if (TransMenu.isSupported()) {
		var ms = new TransMenuSet(TransMenu.direction.down, 0, 0, TransMenu.reference.bottomLeft);
		var menu1 = ms.addMenu(document.getElementById("employee"));
		menu1.addItem("Sign up Now", "/window_tinting/automotive/tinting.php");
		menu1.addItem("Contact Us", "/contact.php"); 
		menu1.addItem("Price Guide", "/window_tinting/price-guide.php");
		menu1.addItem("Service Area", "/window_tinting/sandiego-area.php");
		
		var menu2 = ms.addMenu(document.getElementById("about"));
		menu2.addItem("Automotive Tinting", "/window_tinting/automotive/tinting.php");
		menu2.addItem("Clear Bra", "/window_tinting/clear_bra/clearbra.php");
		menu2.addItem("Car Detail Packages", "/window_tinting/car-details/auto.php");

		var menu3 = ms.addMenu(document.getElementById("projects"));
		menu3.addItem("Testimonials", "/customer_info/testimonials.php");
		menu3.addItem("Photo Gallery", "/customer_info/gallery/");
		menu3.addItem("FAQs", "/customer_info/faq-tinting.php");
		menu3.addItem("Promotions", "/customer_info/promotions.php");
		menu3.addItem("Gift Certificates", "/customer_info/gift_certificates.php");


		TransMenu.renderAll();
	}