if (mtDropDown.isSupported()) 



{



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



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

	menu1.addItem("About Our Company", "about_our_company.html");

	menu1.addItem("Company Guarantees", "guarantees.html");

	menu1.addItem("Code of Ethics", "code_ethics.html");


	

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

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

	menu2.addItem("New & Replacement Systems", "newheating_cooling.html");
	
	menu2.addItem("Solar Heat", "solar_power.html");

	menu2.addItem("System Enhancements", "enhanch_system.html");

	

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

	menu3.addItem("General Plumbing Services", "gplumbing_services.html");

	menu3.addItem("Hot Water Solutions", "hotwater_solution.html");
	
    menu3.addItem("Solar Hot Water", "sun_power.html");

	menu3.addItem("Drain Cleaning", "drain_cleanig.html");

	

	

	

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

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

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

	

	

	mtDropDown.renderAll();



}