	// 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, -5, 5, 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("GetBent"));
		menu1.addItem("Welcome & Values", "Studio_Welcome.html"); 
		menu1.addItem("Get Bent Info", "Studio_Info.html");
		menu1.addItem("Volunteers", "Studio_Volunteers.html");
		menu1.addItem("Supporters", "Studio_Supporters.html");
		menu1.addItem("Coordinators", "Studio_Coordinators.html");
		menu1.addItem("Links", "Studio_Links.html");

		//==================================================================================================

		//==================================================================================================
		var menu2 = ms.addMenu(document.getElementById("Yoga"));
		menu2.addItem("Get Bent Yoga", "Yoga_About.html");
		menu2.addItem("Yoga Teachers", "");
		menu2.addItem("Class Descriptions", "Yoga_Classes.html");
		menu2.addItem("SCHEDULE & Prices", "Yoga_Schedule.html");
		
		var submenu2 = menu2.addMenu(menu2.items[1]);

			submenu2.addItem("Yoga Teachers", "Yoga_Teachers.html");
			submenu2.addItem("Teacher Training", "Yoga_Teachers.html");

		//==================================================================================================

		//==================================================================================================
		var menu3 = ms.addMenu(document.getElementById("Bellydancing"));
		menu3.addItem("Get Bent Belly Dancing", "Belly_Dance_About.html");
		menu3.addItem("Bellydance Teachers", "");
		menu3.addItem("Class Descriptions", "Belly_Dance_Classes.html");
		menu3.addItem("SCHEDULE & Prices", "Belly_Dance_Schedule.html");
		menu3.addItem("WORKSHOPS & SPECIAL GUESTS", "Belly_Dance_Workshops.html");
		
		var submenu3 = menu3.addMenu(menu3.items[1]);
		
			submenu3.addItem("Belly Dance Teachers", "Belly_Dance_Teachers.html");
			submenu3.addItem("Teacher Training", "Belly_Dance_Teachers.html#Get_Bent_Yoga_Teacher_Training");

		//==================================================================================================

		//==================================================================================================
		var menu4 = ms.addMenu(document.getElementById("Performance"));

		menu4.addItem("Overview", "Belly_Dance_Peformance_Overview.html");
		menu4.addItem("Artistic Director", "Belly_Dance_Performance_Director.html");
		menu4.addItem("EVENTS Calendar", "Belly_Dance_Performance_Events.html");
		menu4.addItem("Performance School", "Belly_Dance_Performance_School.html");
		menu4.addItem("Performance Dancers", "Belly_Dance_Performance_Dancers.html");
		menu4.addItem("Media Gallery", "Belly_Dance_Performance_Media.html");
		menu4.addItem("Book Performers", "Belly_Dance_Performance_Bookings.html");
		
		//==================================================================================================

		//==================================================================================================
		var menu5 = ms.addMenu(document.getElementById("Youth"));
		
 		menu5.addItem("Youth Summer Camps", "Youth_Summer_Camps.html");
	    menu5.addItem("Youth Cheerleading", "Youth_Cheerleading.html");
		menu5.addItem("Youth Belly Dancing", "Belly_Dance_Youth.html");
		menu5.addItem("Belly Birthday Parties", "");
		
		//==================================================================================================

		//==================================================================================================
		var menu6 = ms.addMenu(document.getElementById("Stores"));
				
		menu6.addItem("Belly Dance > Shopping", "");
		menu6.addItem("Yoga > Shopping", "");
		menu6.addItem("Get Bent > Gift Certificates", "");	
		
		//==================================================================================================

		//==================================================================================================
		// write drop downs into page
		//==================================================================================================
		// 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();
	}