if (mtDropDown.isSupported()) 



{



	var ms = new mtDropDownSet(mtDropDown.direction.down, 0, 0, mtDropDown.reference.bottomLeft);



	var menu1 = ms.addMenu(document.getElementById("menu1"));

	menu1.addItem("Company History ", "aboutus.html");

	menu1.addItem("Company Purpose", "aboutus2.html");

	menu1.addItem("Meet the Messmers", "aboutus3.html");

	menu1.addItem("Customer Guarantees", "aboutus4.html");

	menu1.addItem("Code of Ethics", "aboutus5.html");



	

	var menu2 = ms.addMenu(document.getElementById("menu2"));

	menu2.addItem("Plumbing & Drain Services", "Plumbing_Drains.html");

	menu2.addItem("Hot Water Services", "Plumbing_Drains2.html");

	



	

	var menu3 = ms.addMenu(document.getElementById("menu3"));

	menu3.addItem("Heating & Cooling System Maintenance", "Heating_Cooling.html");

	menu3.addItem("New Heating & Cooling Systems", "Heating_Cooling2.html");

	menu3.addItem("Indoor Air Quality", "Heating_Cooling3.html");

	

	

	

	var menu4 = ms.addMenu(document.getElementById("menu4"));

	menu4.addItem("Schedule Service", "Contact_us.html");

	menu4.addItem("Customer Feedback", "feedback.html");

	
	
	
	var menu5 = ms.addMenu(document.getElementById("menu5"));

	menu5.addItem("Commercial Services", "Commercial_Services.html");

	menu5.addItem("Commercial Case Studies", "commercial_case_studies.html");
	

	mtDropDown.renderAll();



}