		// 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 (mtDropDown.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 mtDropDownSet(mtDropDown.direction.down, 3, -5, mtDropDown.reference.bottomLeft);

		//==================================================================================================
		// create a dropdown menu
		//==================================================================================================
		// the first parameter should be the HTML element which will act actuator for the menu
		//==================================================================================================
		//Menu 1 - Products and Services
		
		var menu1 = "";
		
		//Amusements
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("Carnival Games", "main.aspx?cat=amusements&type=carnival%20games&cols=2&thumbs=1");
		menu2.addItem("Interactive Amusements", "main.aspx?cat=amusements&type=interactive%20amusements&cols=2&thumbs=1");
		menu2.addItem("Laser Tag", "main.aspx?cat=amusements&type=laser%20tag&cols=2&thumbs=1");
		menu2.addItem("Game Room", "main.aspx?cat=amusements&type=gameroom&cols=2&thumbs=1");
		menu2.addItem("Cash Machines", "main.aspx?cat=amusements&type=cash%20machines&cols=2&thumbs=1");
		menu2.addItem("Dunk Tanks", "main.aspx?cat=amusements&type=dunk%20tanks&cols=2&thumbs=1");

		//Inflatables
		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("Ages 4 & Under", "main.aspx?cat=inflatables&type=ages%204%20and%20under&cols=2&thumbs=1");
		menu3.addItem("Moonwalks", "main.aspx?cat=inflatables&type=moonwalks&cols=2&thumbs=1");
		menu3.addItem("Combos", "main.aspx?cat=inflatables&type=combos&cols=2&thumbs=1");
		menu3.addItem("Slides", "main.aspx?cat=inflatables&type=slides&cols=2&thumbs=1");
		menu3.addItem("Obstacle Courses", "main.aspx?cat=inflatables&type=obstacle%20courses&cols=2&thumbs=1");
		menu3.addItem("Interactive Inflatables", "main.aspx?cat=inflatables&type=interactive%20inflatables&cols=2&thumbs=1");
		
		//Concessions
		var menu4 = ms.addMenu(document.getElementById("menu4"));
		menu4.addItem("Fun Foods", "main.aspx?cat=concessions&type=fun%20foods&cols=2&thumbs=1");	
		menu4.addItem("Frozen Drinks", "main.aspx?cat=concessions&type=frozen%20drinks&cols=2&thumbs=1");
		menu4.addItem("Chocolate Fountains", "main.aspx?cat=concessions&type=chocolate%20fountains&cols=2&thumbs=1");
		menu4.addItem("Candy", "main.aspx?cat=concessions&type=candy&cols=2&thumbs=1");	
		
		//Tents-Tables-Chairs
		var menu5 = ms.addMenu(document.getElementById("menu5"));
		menu5.addItem("Tents", "main.aspx?cat=tents%20tables%20chairs&type=tents&cols=2&thumbs=1");	
		menu5.addItem("Tables", "main.aspx?cat=tents%20tables%20chairs&type=tables&cols=2&thumbs=1");
		menu5.addItem("Chairs", "main.aspx?cat=tents%20tables%20chairs&type=chairs&cols=2&thumbs=1");
		
		//Parties
		var menu6 = ms.addMenu(document.getElementById("menu6"));
		
		//Submenu Themes
		menu6.addItem("Themes", "");
		var subMenu1 = menu6.addMenu(menu6.items[0]);
			subMenu1.addItem("Sports/Olympics", "main.aspx?cat=parties&type=sports/olympics&cols=2&thumbs=1");
			subMenu1.addItem("Beach/Tropical/Jungle", "main.aspx?cat=parties&type=beach/tropical/jungle&cols=2&thumbs=1");
			subMenu1.addItem("Pirates/Nautical", "main.aspx?cat=parties&type=pirates/nautical&cols=2&thumbs=1");
			subMenu1.addItem("Farm/Western", "main.aspx?cat=parties&type=farm/western&cols=2&thumbs=1");
			subMenu1.addItem("Carnival/Fair/Circus", "main.aspx?cat=parties&type=carnival/fair/circus&cols=2&thumbs=1");
			subMenu1.addItem("Zoo/Pets", "main.aspx?cat=parties&type=zoo/pets&cols=2&thumbs=1");
			subMenu1.addItem("Block Party", "main.aspx?cat=parties&type=block%20party&cols=2&thumbs=1");
			subMenu1.addItem("Hollywood", "main.aspx?cat=parties&type=hollywood&cols=2&thumbs=1");
			subMenu1.addItem("Las Vegas", "main.aspx?cat=parties&type=las%20vegas&cols=2&thumbs=1");
			subMenu1.addItem("Other Themes", "main.aspx?cat=parties&type=other%20themes&cols=2&thumbs=1");
		
		
		menu6.addItem("Elementary", "main.aspx?cat=parties&type=elementary%20school&cols=2&thumbs=1");
		menu6.addItem("Middle School", "main.aspx?cat=parties&type=middle%20school&cols=2&thumbs=1");
		menu6.addItem("High School", "main.aspx?cat=parties&type=high%20school&cols=2&thumbs=1");
		menu6.addItem("College", "main.aspx?cat=parties&type=college&cols=2&thumbs=1");
		menu6.addItem("Lock-Ins", "main.aspx?cat=parties&type=lock-ins&cols=2&thumbs=1");
		
		
		//Specialty Items
		var menu7 = ms.addMenu(document.getElementById("menu7"));
		menu7.addItem("Advertising", "main.aspx?cat=specialty%20items&type=advertising&cols=2&thumbs=1");
		menu7.addItem("DJ/Gameshow/Movies", "main.aspx?cat=specialty%20items&type=dj/gameshow/movies&cols=2&thumbs=1");
		menu7.addItem("Sound & Lighting", "main.aspx?cat=specialty%20items&type=sound%20&amp;%20lighting&cols=2&thumbs=1");
		menu7.addItem("Special Amusements", "main.aspx?cat=specialty%20items&type=special%20amusements&cols=2&thumbs=1");
		menu7.addItem("Generators", "main.aspx?cat=specialty%20items&type=generators&cols=2&thumbs=1");
		
		//Services		
		var menu8 = ms.addMenu(document.getElementById("menu8"));
		menu8.addItem("Event & Party Planning", "planning.aspx");
		menu8.addItem("Face Painters, Clowns & DJs", "main.aspx?cat=services&cols=1&thumbs=0");
		
		//Information
		var menu9 = ms.addMenu(document.getElementById("menu9"));
		menu9.addItem("Contact Us", "contact.aspx");
		menu9.addItem("Rental Agreement", "agreement.aspx");
		menu9.addItem("Legal Information", "legal.aspx");
		menu9.addItem("FAQs", "faq.aspx");
		menu9.addItem("Empoyment", "employment.aspx");
		menu9.addItem("Weather", "weather.aspx");
			
		
		
		//==================================================================================================
		// 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();
	}

