// 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("The Ultimate Trophy", "trophy.asp");
		menu1.addItem("About SwarnTower", "about_swarntower.asp");
		menu1.addItem("Exclusive Offer", "offer.asp");
		menu1.addItem("Location Map", "locationmap.asp");
		menu1.addItem("Recruitment", "recruitment.asp");
		menu1.addItem("Press Room", "media.asp");
		menu1.addItem("Events", "events.asp");
		
		
	var menu2 = ms.addMenu(document.getElementById("locations"));
	menu2.addItem("Smart Tariff", "tariff.asp");
	menu2.addItem("Platinum Room", "rooms.asp");
	menu2.addItem("Executive Mini Suites", "rooms.asp");
	menu2.addItem("Rates & Reservation", "rates_reservation.asp");
	menu2.addItem("Presidential Suits", "rooms.asp");
	menu2.addItem("Luxury Executive", "rooms.asp");
	menu2.addItem("Deluxe", "rooms.asp");
	//menu2.addItem("Locations", "gallery_show.asp");		
						
	var menu3 = ms.addMenu(document.getElementById("dinings"));
	
		menu3.addItem("Swarn Lounge", "dinning.asp");	
		menu3.addItem("Cheers Bar", "dinning.asp");	
		menu3.addItem("24 Carat", "dinning.asp");
								
			
				
	
	var menu4 = ms.addMenu(document.getElementById("parties"));
		menu4.addItem("Swarn Mandap", "conference_venue.asp");
		menu4.addItem("Swarn Mahal", "conference_venue.asp");
		//menu4.addItem("Find a Venue	", "venuewedding.htm");
		
	    menu4.addItem("Pub Mirchi", "conference_venue.asp");
		
		
	
		//menu5.addItem("Find a Venue	", "venuemeeting.htm");
		
		
	//	menu5.addItem("Customised web pages", "/meetingsandbusiness/cwp.asp");
	
	
	var menu5 = ms.addMenu(document.getElementById("meetingsandbusiness"));
	    menu5.addItem("conferences Venues", "conference_venue.asp");
		menu5.addItem("Packages", "meeting_package.asp");
	
	var menu6 = ms.addMenu(document.getElementById("swarnfarms"));
	
		  menu6.addItem("Packages", "farm_package.asp");

		
	var menu8 = ms.addMenu(document.getElementById("news"));
	
	var menu7 = ms.addMenu(document.getElementById("reser"));
	    menu7.addItem("Check Available Rooms", "rooms.asp");
		
		menu7.addItem("Check Available Rates", "rates_reservation.asp");
		
		menu7.addItem("Make a booking", "booking.asp");
		menu7.addItem("Cancle a booking", "canbooking.asp");
		
	var menu9 = ms.addMenu(document.getElementById("package"));
	menu9.addItem("Party Packages", "party_package.asp");
	menu9.addItem("Sagai Packages", "sagai_package.asp");
	menu9.addItem("Wedding Packages", "wedding_package.asp");
	menu9.addItem("Kitty Party Package", "kitty_package.asp");
	menu9.addItem("Celebration Packages", "celebration_package.asp");
	menu9.addItem("Platinum Party Package", "platinum_package.asp");
	menu9.addItem("Meeting/Confrence Package", "meeting_package.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();
}