	// 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, 8, 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("corporate"));
		menu1.addItem("About Us", "http://www.tropicanacasinos.com/corporate.php"); 
		menu1.addItem("Management", "http://www.tropicanacasinos.com/management.php"); // send no URL if nothing should happen onclick
		menu1.addItem("Contact Us", "http://www.tropicanacasinos.com/contact_us.php"); // send no URL if nothing should happen onclick
		menu1.addItem("Employment", "http://tbe.taleo.net/NA12/ats/careers/jobSearch.jsp?org=TROPICANA&cws=1"); // send no URL if nothing should happen onclick

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

		//==================================================================================================
		var menu2 = ms.addMenu(document.getElementById("investors"));
		//menu2.addItem("Investors", "http://investors.tropicanacasinos.com/irpass.asp?BzID=1508&Nav=0&S=0&L=1");
		menu2.addItem("News", "http://investors.tropicanacasinos.com/irpass.asp?BzID=1508&to=rl&Nav=0&S=0&L=1");
		//menu2.addItem("SEC Filings", "http://investors.tropicanacasinos.com/irpass.asp?BzID=1508&to=cp&Nav=0&S=0&L=1&ID=10584");
		//menu2.addItem("Conference Calls", "http://investors.tropicanacasinos.com/irpass.asp?BzID=1508&to=cp&Nav=0&S=0&L=1&ID=6246");
		//menu2.addItem("Email Alerts", "http://investors.tropicanacasinos.com/irpass.asp?BzID=1508&to=ea&Nav=0&S=0&L=1");
		menu2.addItem("SEC Filings","http://investors.tropicanacasinos.com/profiles/investor/fullpage.asp?f=1&BzID=1508&to=cp&Nav=0&LangID=1&s=0&ID=11680");
		
		//==================================================================================================


		TransMenu.renderAll();
	}
