	if (mtDropDown.isSupported()) {
		var ms = new mtDropDownSet(mtDropDown.direction.down, 0, 0, mtDropDown.reference.bottomLeft);
		//==================================================================================================
		//var menu1 = ms.addMenu(document.getElementById("menu1"));
		//menu1.addItem("- Home", "index.aspx"); // send no URL if nothing should happen onclick
		
	
		// menu : Inventory
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("- Backhoes ", "inventory.aspx?cat=backhoes");
		menu2.addItem("- Excavators ", "inventory.aspx?cat=excavators");
		menu2.addItem("- Forklifts ", "inventory.aspx?cat=forklifts");
		menu2.addItem("- Manlifts ", "inventory.aspx?cat=manlifts");
		menu2.addItem("- Skid Steers ", "inventory.aspx?cat=skidsteers");
		menu2.addItem("- Other ", "inventory.aspx?cat=others");
		
		// menu : Parts
		//var menu3 = ms.addMenu(document.getElementById("menu3"));
				
		// menu : Service
		//var menu4 = ms.addMenu(document.getElementById("menu4"));
		
		// menu : Contact us
		var menu5 = ms.addMenu(document.getElementById("menu5"));
		menu5.addItem("- Contact Info", "contact.aspx");
		menu5.addItem("- Inquiry Form", "inquiry.aspx");
		
		
		mtDropDown.renderAll();
	}

