<!--
	// 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", "/?page_id=2");
      menu1.addItem("Personal Biography", "/?page_id=17");
	  menu1.addItem("Jean (JJ) Brun - CV", "/?page_id=22");
	  menu1.addItem("Testimonials", "/?page_id=42");
			
		//==================================================================================================

  var menu2 = ms.addMenu(document.getElementById("services")); 
	  menu2.addItem("JJC Consulting", "/?page_id=96");
	  menu2.addItem("JJC Training", "/?page_id=111");



	  
	  	var submenu2 = menu2.addMenu(menu2.items[1]);
		
				  submenu2.addItem("IDE", "/?page_id=128");
				  submenu2.addItem("DISC", "/?page_id=144");
			 
		var submenu2a = submenu2.addMenu(submenu2.items[1]);
			submenu2a.addItem("Overview", "/?page_id=144");
			submenu2a.addItem("What DISC is... ", "/?page_id=163"); 
			submenu2a.addItem("Basic DISC Certification", "/?page_id=174"); 
			submenu2a.addItem("Advanced DISC Certification", "/?page_id=180"); 
			submenu2a.addItem("Upcoming Events", "/services/calendar/index.html");
			submenu2a.addItem("Frequently Asked Questions", "/?page_id=159");
			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", "/?product_cat=books1");
	  menu3.addItem("Flip Charts", "/?product_cat=flipcharts1");
	  menu3.addItem("Audio", "/?product_cat=audio1");
	  menu3.addItem("CD/DVD", "/?product_cat=cddvd1");
	  menu3.addItem("Assessment", "/?product_cat=assessment1");
	  menu3.addItem("Supplements", "/?product_cat=supplements1");
	  menu3.addItem("Spiritual Growth", "/?product_cat=spiritualgrowth1");
	  menu3.addItem("In French", "/?product_cat=infrench1");
	
	
		//==================================================================================================

		// 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();
	}
	-->
