// 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("ratesandres"));
		menu1.addItem("Make a booking", "/ratesandreservations/");		
		menu1.addItem("Modify a booking", "/priorityGuest/rpgActivity.asp");		
		menu1.addItem("Cancel a booking", "/ROBE/cancellationNP.asp");		
		menu1.addItem("Manage your profile", "/priorityGuest/rpgProfileInfo.asp");
		
	var menu2 = ms.addMenu(document.getElementById("location"));		
		menu2.addItem("Find a hotel", "/locations/");
		menu2.addItem("Interactive location map", "/locations/map.asp");
		menu2.addItem("Rydges Dream Beds", "/Dream-Beds/");
	
	var menu3 = ms.addMenu(document.getElementById("RPG"));		
		menu3.addItem("About Rydges<br> PriorityGUEST", "/priorityGuest/rpgLogin.asp");
		menu3.addItem("Member benefits", "/priorityGuest/rpgAbout-Member-Benefits.asp");
		menu3.addItem("Member special offers", "/priorityGuest/rpgAbout-Member-Specials.asp");
		menu3.addItem("Program partners", "/priorityGuest/rpgAbout-Program-Partners.asp");
		menu3.addItem("Smartvisit rewards", "/priorityGuest/rpgAbout-SmartvisitRewards.asp");
		menu3.addItem("Tell a friend", "/priorityGuest/rpgEmail-Forward.asp");
		menu3.addItem("Help", "/priorityGuest/rpgContactUs.asp");
								
	var menu4 = ms.addMenu(document.getElementById("packagesandspecials"));						
		//menu4.addItem("Gift cards", "/mothersday09/");	
		menu4.addItem("Gift cards", "/giftcard/index.asp");	
		//menu4.addItem("Gift vouchers", "/packagesandspecials/giftvouchers.asp");
	
	var menu5 = ms.addMenu(document.getElementById("weddingsandevents"));
		menu5.addItem("Make an enquiry", "/meetingsandbusiness/venue_submission.asp?ref=weddings");
		menu5.addItem("Image Gallery", "/weddingsandevents/Wedding-Image-Gallery.asp");
		
	var menu6 = ms.addMenu(document.getElementById("meetingsandbusiness"));
		menu6.addItem("Get a quote online", "/meetingsandbusiness/");
		menu6.addItem("Find your quote	", "/meetingsandbusiness/quote/find_quote.asp");
		//menu6.addItem("News &amp; specials", "/meetingsandbusiness/conferenceNews.asp");
		menu6.addItem("Customised web pages", "/meetingsandbusiness/cwp.asp");
	
	var menu7 = ms.addMenu(document.getElementById("about"));		
		menu7.addItem("About AHL", "/about/ahl.asp");		
		menu7.addItem("Rydges press releases", "/about/PressRelease.asp");
		menu7.addItem("Rydges hotel blog", "/about/Hotel-Blog.asp");
		menu7.addItem("Rydges news", "/about/news.asp");
		menu7.addItem("What's On at Rydges", "/about/events.asp");
		menu7.addItem("Careers at Rydges", "/about/jobs.asp");
		menu7.addItem("Rydges media gallery", "/about/media.asp");	
		
	//==================================================================================================
	// 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();
}*/