// 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, 12, -3, 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("rooms"));
/*		menu1.addItem("Traditional King Single Rooms", "Kingrooms.php");
		menu1.addItem("Traditional Double Rooms", "doublerooms.php");
		menu1.addItem("Family Suites", "familysuites.php");
		menu1.addItem("Mini Suites", "minisuite.php"); 
		menu1.addItem("Traditional Business Suites", "buz_suites.php");
		menu1.addItem("Business Jacuzzi Suites", "buz_jacuzzi.php"); 
		menu1.addItem("Business Boardroom Suites", "buz_boardroom.php"); 
		menu1.addItem("Themed Suite", "themedsuites.php"); 
		*/
		
		menu1.addItem("Traditional King Rooms", "/king_single_rooms.php");
		menu1.addItem("Traditional Double Rooms", "/double_rooms.php");
		menu1.addItem("Family Suites", "/family_suites.php");
		menu1.addItem("Mini Suites", "/mini_suites.php"); 
		menu1.addItem("Business Suites", "/business_suites.php");
		menu1.addItem("Business Jacuzzi Suites", "/business_jacuzzi_suites.php"); 
		menu1.addItem("Business Boardroom Suites", "/business_boardroom_suites.php"); 
		menu1.addItem("Themed Suites", "/themed_suite.php"); 
		
		//==================================================================================================

		//==================================================================================================
		var menu2 = ms.addMenu(document.getElementById("facilities"));
		menu2.addItem("Our Facilities", "/facilities.php");
		menu2.addItem("Catering", "/catering.php");
		menu2.addItem("eRFP", "/request_proposal.php");
		menu2.addItem("Wedding Info", "/wedding.php");
		

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

		//==================================================================================================
		var menu3 = ms.addMenu(document.getElementById("dining"));
		menu3.addItem("Mohave Grill", "/mohave_grill.php");
		menu3.addItem("Wild Horse Pub","/wild_horse_pub.php");
		menu3.addItem("Cactus Lounge","/cactus_lounge.php");
		menu3.addItem("Golden Club Buffet", "/golden_club.php");
		menu3.addItem("Island Bar", "/island_bar.php");
		menu3.addItem("Sushi Bar", "/sushi_bar.php");
		menu3.addItem("Friday Night Buffet", "/night_buffet.php");
		

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

		//==================================================================================================
		var menu4 = ms.addMenu(document.getElementById("casino"));
		menu4.addItem("Poker Room", "/casino.php?type=poker_room");		
		menu4.addItem("Tables", "/casino.php?type=tables");
		menu4.addItem("Party Pit", "/partypit.php");
		menu4.addItem("Fortune Room", "/casino.php?type=high_limit_room");		
		menu4.addItem("Slots", "/casino.php?type=slots");
		menu4.addItem("Bus Tours/Group Bookings", "/bus_tours.php");
		//menu4.addItem("Special Events", "/special_events.php");
		menu4.addItem("Responsible Gaming", "/casino.php?type=casino_responsible");
		//==================================================================================================
		
		//==================================================================================================
	//	var menu5 = ms.addMenu(document.getElementById("events"));
		//menu5.addItem("Stampede Casino", "/event_casino.php");
		
		//==================================================================================================
		var menu6 = ms.addMenu(document.getElementById("reservation"));
		menu6.addItem("Reservations", "https://booking.ihotelier.com/istay/istay.jsp?hotelid=12602");		
		menu6.addItem("Mini Bar Pre-order", "/mini_bar.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();
	}
