	if (mtDropDown.isSupported()) {



			var ms = new mtDropDownSet(mtDropDown.direction.down, 0, 0, mtDropDown.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("menu1"));

		menu1.addItem("Company Info", "http://globalhospitality.com/companyinfo.html");

		menu1.addItem("Code of Ethics", "http://globalhospitality.com/ethics.html");

		menu1.addItem("Consultant Profiles", "http://globalhospitality.com/profiles.html");

		menu1.addItem("Join Our Team", "http://globalhospitality.com/join.html");

		

		

		var menu2 = ms.addMenu(document.getElementById("menu2"));

		menu2.addItem("Why Global","http://globalhospitality.com/whyglobal.html");

		menu2.addItem("The Match Process", "http://globalhospitality.com/match.html");

		menu2.addItem("Global Guarantee", "http://globalhospitality.com/guarantee.html");

		menu2.addItem("Testimonials", "http://globalhospitality.com/testimonials.html");

		menu2.addItem("Request Proposal", "http://globalhospitality.com/proposal.html");

		

    

    var menu3 = ms.addMenu(document.getElementById("menu3"));

        menu3.addItem("Search Jobs","http://globalhospitality.com/searchjobs.html");

		menu3.addItem("How We Work", "http://globalhospitality.com/how.html");

		menu3.addItem("Submit Resume", "http://globalhospitality.com/resume.html");

		menu3.addItem("Career Toolkit", "http://globalhospitality.com/toolkit.html");

		

		

		var menu4 = ms.addMenu(document.getElementById("menu4"));

		menu4.addItem("Hotels & Resorts &nbsp; &nbsp; &nbsp; &nbsp;","http://globalhospitality.com/hotels.html");

		menu4.addItem("Restaurants", "http://globalhospitality.com/restaurants.html");

		menu4.addItem("Spas", "http://globalhospitality.com/spas.html");

		menu4.addItem("Clubs", "http://globalhospitality.com/clubs.html");

		menu4.addItem("Casinos", "http://globalhospitality.com/casinos.html");

		menu4.addItem("Food Service", "http://globalhospitality.com/foodservice.html");

		menu4.addItem("Private Service", "http://globalhospitality.com/privateservice.html");

		

		

		var menu5 = ms.addMenu(document.getElementById("menu5"));

		menu5.addItem("Los Angeles  &nbsp;&nbsp;","http://www.globalhospitality.com/losangeles.html");

		menu5.addItem("Toronto", "http://www.globalhospitality.com/toronto.html");

		menu5.addItem("Montreal", "http://www.globalhospitality.com/montreal.html");



		

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

		// 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.

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

		mtDropDown.renderAll();

	}


