	// 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, 0, TransMenu.reference.bottomLeft);
		var myString;
		//==================================================================================================
		// 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("About"));
        menu1.addItem("<div id='GeneralInforamtion'><div class='arrow'>General Information</div></div>", "/About-the-Club.asp");
		menu1.addItem("<div id='Membership'><span class='arrow'>Membership</span></div>", "/Membership.asp");
		menu1.addItem("<div id='MapsDirections'><span class='arrow'>Map / Directions</span></div>", "/Map-Directions.asp");
		menu1.addItem("<div id='ContactUs'><span class='arrow'>Contact Us</span></div>", "/Contact-Us.asp");
		
		var menu2 = ms.addMenu(document.getElementById("Tennis"));
		menu2.addItem("<div id='Tennis'><span class='arrow'>Tennis</span></div>", "/Tennis/index.asp");
		menu2.addItem("<div id='Sports'><span class='arrow'>Sports</span></div>", "/Sports/index.asp");
		menu2.addItem("<div id='Swimming'><span class='arrow'>Swimming</span></div>", "/Swimming/index.asp");
		menu2.addItem("<div id='TheGreatOutdoors'><span class='arrow'>The Great Outdoors</span></div>", "/Great-Outdoors/index.asp");
				
		var menu3 = ms.addMenu(document.getElementById("Training"));
		menu3.addItem("<div id='GroupExercise'><span class='arrow'>Group Exercise / Pilates</span></div>", "/Group-Exercise/index.asp");
		menu3.addItem("<div id='FitnessWellness'><span class='arrow'>Fitness / Wellness</span></div>", "/FitnessWellness/index.asp");
		menu3.addItem("<div id='PersonalTraining'><span class='arrow'>Personal Training</span></div>", "/Personal-Training/index.asp");
				
		var menu4 = ms.addMenu(document.getElementById("Spa"));
		menu4.addItem("<div id='AmbianceDaySpa'><span class='arrow'>Ambiance Day Spa</span></div>", "/Ambiance-Day-Spa/index.asp");
		menu4.addItem("<div id='ClubAmenities'><span class='arrow'>Club Amenities</span></div>", "/Club-Amenities/index.asp");
		menu4.addItem("<div id='FacilityRentals'><span class='arrow'>Facility Rentals</span></div>", "/Facility-Rentals/index.asp");
				
		var menu5 = ms.addMenu(document.getElementById("Family"));
		menu5.addItem("<div id='KidsAndTheClub'><span class='arrow'>Kids & the Club</span></div>", "/Kids-and-the-Club/index.asp");
		menu5.addItem("<div id='SocialActivities'><span class='arrow'>Social Activities</span></div>", "/Social-Activities/index.asp");
		menu5.addItem("<div id='OurCommunity'><span class='arrow'>Our Community</span></div>", "/Our-Community/index.asp");
		menu5.addItem("<div id='LearningCenter'><span class='arrow'>Learning Center</span></div>", "/Learning-Center/index.asp");

		
		// uncomment to view the sub navigation
		// var submenu1 = menu1.addMenu(menu1.items[0]);
		// var submenu2 = menu1.addMenu(menu1.items[1]);

		// submenu1.addItem("Test", "");
		// submenu1.addItem("Test", "");
		// submenu1.addItem("Test", "");
		// submenu1.addItem("Test", "");

		// submenu2.addItem("Test", "");
		// submenu2.addItem("Test", "");
		// submenu2.addItem("Test", "");
		// submenu2.addItem("Test", "");
		
		//==================================================================================================
		
		TransMenu.renderAll();
	}
