if (TransMenu.isSupported()) {
	var ms = new TransMenuSet(TransMenu.direction.down, 0, 0, TransMenu.reference.bottomLeft);

	var menu1 = ms.addMenu(document.getElementById("nav_company"));
	menu1.addItem("Customer Service", "/company_profile.php#service");
	menu1.addItem("Owners &amp; Staff", "/company_profile.php#staff");
	
	var menu2 = ms.addMenu(document.getElementById("nav_phone"));
	menu2.addItem("Phone Systems", "/phone_systems.php#phone");
	menu2.addItem("Keysets", "/phone_systems.php#keysets");
	menu2.addItem("Teleconference Phones", "/phone_systems.php#teleconference");
	menu2.addItem("Voicemail", "/phone_systems.php#voicemail");
	
	var menu3 = ms.addMenu(document.getElementById("nav_audio"));
	menu3.addItem("Audio on Hold", "/audio.php#hold");
	menu3.addItem("Overhead Music", "/audio.php#overhead");
	menu3.addItem("Intercoms", "/audio.php#intercoms");
	menu3.addItem("Zone Paging", "/audio.php#zone");
	menu3.addItem("Ring Systems", "/audio.php#ring");
	
	var menu4 = ms.addMenu(document.getElementById("nav_other"));
	menu4.addItem("Cable Installation", "/otherservices.php#cable");
	menu4.addItem("Security", "/otherservices.php#entry");
	menu4.addItem("Lighting Systems", "/otherservices.php#lighting");
	menu4.addItem("Equipment and Supplies", "/otherservices.php#supplies");
	menu4.addItem("Phone Service", "/otherservices.php#phones");
	
	var menu5 = ms.addMenu(document.getElementById("nav_contact"));
	menu5.addItem("Phone Numbers", "/contact.php#numbers");
	menu5.addItem("Address", "/contact.php#mailing");
	menu5.addItem("Office Hours", "/contact.php#hours");
	menu5.addItem("Testimonials", "/contact.php#testimonials");
	menu5.addItem("Contact Form", "/contact.php#form");

	
		
	TransMenu.renderAll();
}