// 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, 0, 1, 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("home"));
		//	menu1.addItem("Wedgewoodhotel.com", "http://www.wedgewoodhotel.com"); 
			menu1.addItem("Hotel Location","../files_2/location.php");
		//==================================================================================================

		//==================================================================================================
		var menu2 = ms.addMenu(document.getElementById("reservations"));
			menu2.addItem("Reserve online","../files_2/reservations.php");
			menu2.addItem("Promotions","../files_2/promotions.php");
			menu2.addItem("Packages","../files_2/packages.php");
			menu2.addItem("Purchase an Amenity","../files_2/purchase_amenity.php");
			menu2.addItem("Gift Certificate Order Form","https://id403.van.ca.siteprotect.com/wedgewoodhotel/files_2/gift-certificate.php");
			menu2.addItem("Apply for a Corporate Membership","../files_2/Corporate.php");
			menu2.addItem("The Wedgewood Club","../files_2/Corporate.php#wedgewoodclub");
			menu2.addItem("Relais &amp; Ch&acirc;teaux Club 5C","../files_2/relais-chateaux-club-5C.php");
			menu2.addItem("Update Travel Agent Account","../files_2/travel_request.php");
			
			


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

		//==================================================================================================
		var menu3 = ms.addMenu(document.getElementById("accommodations"));
			menu3.addItem("Guestrooms & Suites","../files_2/accommodations.php");
			menu3.addItem("Business Services","../files_2/business_services.php");
			


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

		//==================================================================================================
		var menu4 = ms.addMenu(document.getElementById("dining"));
			menu4.addItem("Bacchus Restaurant & Lounge","../files_2/dining.php");
			menu4.addItem("Bacchus Reservations","../files_2/bacchus-reservations.php");			
			menu4.addItem("The Executive Chef","../files_2/chef.php");
			menu4.addItem("Menus","../files_2/menus.php");
			menu4.addItem("Gift Certificate Order Form","https://id403.van.ca.siteprotect.com/wedgewoodhotel/files_2/gift-certificate.php");

			//menu4.addItem("Gift Certificates","../files_2/spa-gift-certificates.php");

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

		//==================================================================================================
		var menu5 = ms.addMenu(document.getElementById("spa"));
			menu5.addItem("Wedgewood Spa","../files_2/spa.php");
			menu5.addItem("Massage Styles","../files_2/massage.php");
			menu5.addItem("Skin Care","../files_2/skincare.php");
			menu5.addItem("Nail Care","../files_2/nailcare.php");
			menu5.addItem("Treatments","../files_2/treatments.php");
			menu5.addItem("Fitness Facilities","../files_2/fitness.php");
			menu5.addItem("Spa Packages","../files_2/spa-packages.php");
			menu5.addItem("Appointments","../files_2/appointments.php");
			menu5.addItem("Gift Certificate Order Form","https://id403.van.ca.siteprotect.com/wedgewoodhotel/files_2/gift-certificate.php");

			//menu5.addItem("Gift Certificates","../files_2/spa-gift-certificates.php");

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

		//==================================================================================================
		var menu6 = ms.addMenu(document.getElementById("weddings"));
			menu6.addItem("Weddings at the Wedgewood","../files_2/weddings.php");
			menu6.addItem("Meetings","../files_2/meetings.php");
			//menu6.addItem("Romance at the Wedgewood","../files_2/romance.php");



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

		//==================================================================================================
		var menu7 = ms.addMenu(document.getElementById("people"));
			
			menu7.addItem("The People","../files_2/people.php");
			
		//==================================================================================================

		//==================================================================================================
		var menu8 = ms.addMenu(document.getElementById("rc"));
			
			menu8.addItem("About Relais & Ch&acirc;teaux","../files_2/relais+chateaux.php");
			menu8.addItem("Relais &amp; Ch&acirc;teaux Club 5C","../files_2/relais-chateaux-club-5C.php");
			menu8.addItem("Route du Bonheur","../files_2/relais+chateaux-route-bonheur.php");
	

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

		//==================================================================================================
		var menu9 = ms.addMenu(document.getElementById("media"));
			menu9.addItem("Newsreleases","../files_2/NewsReleases.php");
			menu9.addItem("Testimonials","../files_2/testimonials.php");

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

		//==================================================================================================
		var menu10 = ms.addMenu(document.getElementById("downloads"));
			//menu9.addItem("Press Releases","../files_2/pressroom.php");
			menu10.addItem("Photo Gallery","http://picasaweb.google.ca/wedgewoodhotel");

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

		//==================================================================================================
		var menu11 = ms.addMenu(document.getElementById("contact"));
			menu11.addItem("Contact Wedgewood","../files_2/contact.php");





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

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