	if (TransMenu.isSupported()) {

		var ms = new TransMenuSet(TransMenu.direction.down, 1, 0, TransMenu.reference.bottomLeft);


		//var menu1 = ms.addMenu(document.getElementById("Home1"));
		//menu1.addItem("VeloTek Racing", "index.php?page=home"); 
		//menu1.addItem("VeloTek Coaching", "index.php?page=coaching"); // send no URL if nothing should happen onclick

// notes about the code
		var menu1 = ms.addMenu(document.getElementById("Procedure"));
		menu1.addItem("Fat: Ideal Filler & FAQs", "fat.php");
		menu1.addItem("Facial Enhancement & Rejuvenation", "#");
		menu1.addItem("Breast Enhancement & Augmentation", "breastaug.php");
		menu1.addItem("Buttock Enhancement & Augmentation", "buttocksaug.php");
		menu1.addItem("Body Enhancement", "bodyaug.php");
		menu1.addItem("Prices", "prices.php");
		menu1.addItem("Financing", "financing.php");
		
		var submenu1 = menu1.addMenu(menu1.items[1]);
		submenu1.addItem("Face & Neck Rejuvenation", "face.php");
		submenu1.addItem("Upper Face", "upperface.php");
		submenu1.addItem("Lips & Laugh Lines", "lips.php");
		submenu1.addItem("Cheeks", "cheeks.php");
		submenu1.addItem("Chin & Jaw-Line", "chin.php");

		var menu2 = ms.addMenu(document.getElementById("KSsmartlipo"));
		menu2.addItem("Face & Neck Rejuvenation", "face.php");
		menu2.addItem("Upper Face", "upperface.php");
		menu2.addItem("Lips & Laugh Lines", "lips.php");
		menu2.addItem("Cheeks", "cheeks.php");
		menu2.addItem("Chin & Jaw-Line", "chin.php");
		
		

		//var menu4 = ms.addMenu(document.getElementById("Information"));
		//menu4.addItem("Need a Bike?", "index.php?page=loanbike");
		//menu4.addItem("Grand Prix", "index.php?page=grandprix");
		//menu4.addItem("Links", "index.php?page=links");
		//menu4.addItem("Contact Us", "index.php?page=contactus");

		TransMenu.renderAll();
	}