<!--
	// set up drop downs anywhere in the body of the page. I think the bottom of the page is better.. 
	// but you can experiment with effect on loadtime.
	if (TransMenu.isSupported()) {

		//==================================================================================================
		// create a set of dropdowns
		//==================================================================================================
		// the first param should always be down, as it is here
		//
		// The second and third param are the top and left offset positions of the menus from their actuators
		// respectively. To make a menu appear a little to the left and bottom of an actuator, you could use
		// something like -5, 5
		//
		// The last parameter can be .topLeft, .bottomLeft, .topRight, or .bottomRight to inidicate the corner
		// of the actuator from which to measure the offset positions above. Here we are saying we want the 
		// menu to appear directly below the bottom left corner of the actuator
		//==================================================================================================
		var ms = new TransMenuSet(TransMenu.direction.down, 1, 7, TransMenu.reference.bottomLeft);

		//==================================================================================================
		// create a dropdown menu
		//==================================================================================================
		// the first parameter should be the HTML element which will act actuator for the menu
		//==================================================================================================
  var menu1 = ms.addMenu(document.getElementById("company"));
	  menu1.addItem("Business Profile", "/about/overview/index.html");
      menu1.addItem("Personal Biography", "/about/personal_bio/index.html");
	  menu1.addItem("Jean (JJ) Brun - CV", "/about/jean_brun/index.html");
	  menu1.addItem("Testimonials", "/about/testimonial/index.html");
			
		//==================================================================================================

  var menu2 = ms.addMenu(document.getElementById("services")); 
	  menu2.addItem("JJC Consulting", "/services/overview/index.html");
	  menu2.addItem("JJC Training", "/resources/overview/index.html");



	  
	  	var submenu2 = menu2.addMenu(menu2.items[1]);
		
				  submenu2.addItem("IDE", "/resources/ide/index.html");
				  submenu2.addItem("DISC", "/services/disc/index.html");
			 
		var submenu2a = submenu2.addMenu(submenu2.items[1]);
			submenu2a.addItem("Overview", "/services/disc/index.html");
			submenu2a.addItem("What DISC is... ", "/services/disc/what_is_disc.html"); 
			submenu2a.addItem("Basic DISC Certification", "/services/disc/basic.html"); 
			submenu2a.addItem("Advanced DISC Certification", "/services/disc/advanced.html"); 
			submenu2a.addItem("Upcoming Events", "/services/calendar/index.html");
			submenu2a.addItem("Frequently Asked Questions", "/services/faq/index.html");
			submenu2a.addItem("Personality Lab", "http://www.discoveryreport.com/DiscoveryReportForm_quick.php?ref=jj _blank", "_blank");
	  
	
		//==================================================================================================
 //var menu3 = ms.addMenu(document.getElementById("programs")); 
	 // menu3.addItem("DISC", "/services/disc/index.html"); 
	 // menu3.addItem("Reading People", "/resources/ide/index.html");
	  
	  	//var submenu3 = menu3.addMenu(menu3.items[0]);
			//submenu3.addItem("Overview", "/services/disc/index.html");
			//submenu3.addItem("What DISC is... ", "/services/disc/what_is_disc.html"); 
			//submenu3.addItem("Basic DISC Certification", "/services/disc/basic.html"); 
			//submenu3.addItem("Advanced DISC Certification", "/services/disc/advanced.html"); 
			//submenu3.addItem("Seminars & Workshops", "/resources/disc/index.html");
			//submenu3.addItem("Upcoming Events", "/services/calendar/index.html");
			//submenu3.addItem("Frequently Asked Questions", "/services/faq/index.html");   

		//==================================================================================================

		//==================================================================================================

  var menu3 = ms.addMenu(document.getElementById("products"));
	  menu3.addItem("Books", "http://www.contenta.com/e_stores/jj/index.cfm?category_id=1");
	  menu3.addItem("Flip Charts", "http://www.contenta.com/e_stores/jj/index.cfm?category_id=2");
	  menu3.addItem("Audio", "http://www.contenta.com/e_stores/jj/index.cfm?category_id=3");
	  menu3.addItem("CD/DVD", "http://www.contenta.com/e_stores/jj/index.cfm?category_id=5");
	  menu3.addItem("Assessment", "http://www.contenta.com/e_stores/jj/index.cfm?category_id=6");
	  menu3.addItem("Supplements", "http://www.contenta.com/e_stores/jj/index.cfm?category_id=7");
	  menu3.addItem("Spiritual Growth", "http://www.contenta.com/e_stores/jj/index.cfm?category_id=8");
	  menu3.addItem("In French", "http://www.contenta.com/e_stores/jj/index.cfm?category_id=9");
	
	
		//==================================================================================================

		// this method writes all the HTML for the menus into the page with document.write(). It must be
		// called within the body of the HTML page.
		//==================================================================================================
		TransMenu.renderAll();
	}
	-->