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.right, 182, -40, 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("l2"));
	menu1.addItem("• About Yoga", "http://www.yogawell.com/about_yoga.php"); 
	menu1.addItem("• Yoga Therapies", "http://www.yogawell.com/yoga_therapies.php");
	menu1.addItem("• Asana of the Month", "http://www.yogawell.com/asana_of_the_month.php");

	
	var menu2 = ms.addMenu(document.getElementById("l3"));
	menu2.addItem("• 200 RYT", "http://www.yogawell.com/200_ryt.php"); 
	menu2.addItem("• 500 RYT", "http://www.yogawell.com/500_ryt.php"); 
	menu2.addItem("• Pre/postnatal Yoga", "http://www.yogawell.com/pre_post_natal_yoga.php");
	menu2.addItem("• Kid's Yoga", "http://www.yogawell.com/kids_yoga.php");

	var menu3 = ms.addMenu(document.getElementById("l6"));
	menu3.addItem("• Public Classes", "http://www.yogawell.com/schedule.php");
	menu3.addItem("• Teacher Training Schedule", "http://www.yogawell.com/teacher_training.php");
	menu3.addItem("• Workshops", "http://www.yogawell.com/workshops.php");
	menu3.addItem("• Description of Classes", "http://www.yogawell.com/description_classes.php"); 

	
	var menu4 = ms.addMenu(document.getElementById("l7"));
	menu4.addItem("• Graduates", "http://www.yogawell.com/graduates.php"); 
	menu4.addItem("• Seva", "http://www.yogawell.com/seva.php");
	menu4.addItem("• Our Favorites", "http://www.yogawell.com/our_favorites.php");
	
	var menu5 = ms.addMenu(document.getElementById("l9"));
	menu5.addItem("• Faculty & Staff", "http://www.yogawell.com/faculty_staff.php");
	menu5.addItem("• Some of our graduates", "http://www.yogawell.com/graduates.php");
	menu5.addItem("• In Loving Memory of K. Lee", "http://www.yogawell.com/in_loving_memory_of_k_lee.php");
	menu5.addItem("• Locations", "http://www.yogawell.com/locations.php");
		
	var menu6 = ms.addMenu(document.getElementById("l11"));
	var menu7 = ms.addMenu(document.getElementById("l14"));
	


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

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