	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 : About
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("- Company Information", "about.aspx");
		menu2.addItem("- History", "history.aspx");	
		
		// menu : New Equipment
		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("- Specials", "specials.aspx");
		menu3.addItem("- Dealer Financing", "dealerfinancing.aspx");
		menu3.addItem("- Terex ", "product.aspx?b=Terex");
		menu3.addItem("- Manitex ", "product.aspx?b=Manitex");
		menu3.addItem("- Load King Trailers ", "product.aspx?b=Loadking");
		menu3.addItem("- Badger Equipment Co ", "product.aspx?b=Badger");
		menu3.addItem("- Genie ", "product.aspx?b=Genie");
		//menu3.addItem("- Fuchs ", "product.aspx?b=Fuchs");
		//menu3.addItem("- 17 t Program ", "17_t_program.aspx");
		//menu3.addItem("- Attachment Program ", "attachment_program.aspx");
		
		// menu : Used Equipment
		var menu4 = ms.addMenu(document.getElementById("menu4"));

		// menu : Parts
		var menu5 = ms.addMenu(document.getElementById("menu5"));
		//menu5.addItem("- CM Parts Inventory", "cm_parts.aspx");
		menu5.addItem("CM Spare Parts Online", "http://thecraneparts.com");
		//menu5.addItem("- Greer Parts", "greer_parts.aspx");
				
		// menu : Support
		var menu6 = ms.addMenu(document.getElementById("menu6"));
		//menu6.addItem("- Services", "services.aspx");
		//menu6.addItem("- Support", "support.aspx");
		//menu6.addItem("- Downloads", "downloads.aspx");		
		
		// menu : Contact us
		var menu7 = ms.addMenu(document.getElementById("menu7"));
		menu7.addItem("- Contact Info", "contact.aspx");
		menu7.addItem("- Inquiry Form", "inquiry.aspx");
		
		
		mtDropDown.renderAll();
	}

