	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("Smart Lipo", "smartlipo.php");
		menu1.addItem("Fractional Laser Skin Resurfacing", "laserSkinResurfacing.php");
		menu1.addItem("Liposuction", "bodyscultping.php");
		menu1.addItem("Lipodissolve", "lipodissolve.php");
		menu1.addItem("Botox", "botox.php");
		menu1.addItem("Fillers", "#");
		menu1.addItem("Microdermabrasion & Chemical Peels", "#");
		menu1.addItem("Varicose & Spider Vein Treatment", "vericose.php");
		menu1.addItem("Cosmetic Eyelid Surgery", "eyelid.php");
		menu1.addItem("Photorejuvenation & Acne Treatment", "ipl.php");
		
		var submenu1 = menu1.addMenu(menu1.items[5]);
		submenu1.addItem("Restylane", "1.php");
		submenu1.addItem("Radiesse", "2.php");
		submenu1.addItem("Fat: Ideal Filler & FAQs", "3.php");

		var submenu2 = menu1.addMenu(menu1.items[6]);
		submenu2.addItem("Microderemabrasion", "4.php");
		submenu2.addItem("Chemical Peels", "5.php");
		
		//var menu2 = ms.addMenu(document.getElementById("KSsmartlipo"));
		//menu2.addItem("Kansas City", "kansascity.php");
		//menu2.addItem("Emporia", "emporia.php");
		//menu2.addItem("Wichita", "wichita.php");
		
		//var menu3 = ms.addMenu(document.getElementById("botoxfillers"));
		//menu3.addItem("Kansas City", "kansascity.php");
		//menu3.addItem("Emporia", "emporia.php");
		//menu3.addItem("Wichita", "wichita.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();
	}
