	// 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);

		//==================================================================================================
		// 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("menu1"));
		menu1.addItem("Events Calendar", "/calendar/default.aspx");
		menu1.addItem("Activities", "/things-to-do/activities/summer.aspx");
		menu1.addItem("Sports &amp; The Outdoors", "/things-to-do/sports-and-the-outdoors.aspx");
		menu1.addItem("Families &amp; Kids", "/things-to-do/families-and-kids.aspx");   
		menu1.addItem("Culture and the Arts", "/things-to-do/culture-and-the-arts.aspx"); 
		menu1.addItem("Shopping", "/shopping/"); 
		
			var submenu0 = menu1.addMenu(menu1.items[1]);	
			submenu0.addItem("Summer/Spring", "/things-to-do/activities/summer.aspx");
			submenu0.addItem("Fall", "/things-to-do/activities/fall.aspx");
			submenu0.addItem("Winter", "/things-to-do/activities/winter.aspx");
		
		
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("Request a Travel Quote", "/lodging/request-travel-quote.aspx");
		menu2.addItem("Seasonal Packages", "/seasonal-packages/");
		
		var menu3 = 0;
		
		var menu4 = 0;
  

		var menu5 = ms.addMenu(document.getElementById("menu5"));
		menu5.addItem("Conferences, Meetings, Social Events", "/event-planning/conferences.aspx");
		menu5.addItem("Weddings", "/event-planning/weddings/default.aspx");
		
//			var submenu0 = menu5.addMenu(menu5.items[1]);	
//			submenu0.addItem("Signature Touches", "/event-planning/weddings/signature-touches.aspx");
//			submenu0.addItem("The Village", "/event-planning/weddings/the-village.aspx");
//			submenu0.addItem("All Weekend Long", "/event-planning/weddings/all-weekend-long.aspx");
//			submenu0.addItem("Testimonials", "/event-planning/weddings/testimonials.aspx");
//			submenu0.addItem("Say I Do", "/event-planning/weddings/say-i-do.aspx");
		
		var menu6 = 0;
				
		
		var menu7 = ms.addMenu(document.getElementById("menu7"));
		menu7.addItem("Directions", "/about-us/directions.aspx");
		menu7.addItem("FAQ", "/about-us/faq.aspx");
		menu7.addItem("About WVRA", "/about-us/about-wvra.aspx");
		menu7.addItem("Member Directory", "/about-us/member-directory.aspx");
		menu7.addItem("Contact Us", "/about-us/contact-us.aspx");

		//==================================================================================================

		//==================================================================================================

		TransMenu.renderAll();
	}

