if (mtDropDown.isSupported()) 



{



	var ms = new mtDropDownSet(mtDropDown.direction.down, 0, 0, mtDropDown.reference.bottomLeft);



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

	menu1.addItem("General Plumbing Services", "general_plumbing.html");

	menu1.addItem("Hot Water Solutions", "water_solutions.html");



	

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

	menu2.addItem("Service & Repairs", "services_repairs.html");

	menu2.addItem("New & Replacement Systems", "new_replacement.html");

	menu2.addItem("System Add-ons", "add_ons.html");
	
	menu2.addItem("Geothermal Heat Pumps", "geothermal_heat.html");



	

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

	menu3.addItem("Schedule Service", "schedule_service.html");

	menu3.addItem("Customer Feedback", "customer_feedback.html");



	mtDropDown.renderAll();



}