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 Purpose", "company_purpose.html");

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

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



	

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

	menu2.addItem("General Plumbing Services", "plumbing_services.html");

	menu2.addItem("Hot Water Solutions", "water_solutions.html");
	
	menu2.addItem("Rinnai Tankless Water Heaters", "rinnai.html");

	menu2.addItem("Drain Cleaning", "drain_cleaning.html");



	var menu3 = ms.addMenu(document.getElementById("menu3"));
	
	menu3.addItem("AC Introduction", "ac_intro.html");

	menu3.addItem("Repairs & Maintenance", "repairs_maintenance.html");

	menu3.addItem("New & Replacement Systems", "replacement_systems.html");
	
	menu3.addItem("Trane AC Systems", "trane.html");
	
	menu3.addItem("Bryant / Carrier AC Systems", "bryant_carrier.html");
	
	menu3.addItem("Ductless Air Conditioning", "ductless_air.html");

	menu3.addItem("Tax Credits & Mfg. Rebates", "tax_credits.html");

    menu3.addItem("System Enhancements", "system_enhancements.html");

	

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

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

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



	mtDropDown.renderAll();



}