
// set up drop downs anywhere in the body of the page. I think the bottom of the page is better.. 
// but you can experiment with effect on loadtime.
if (TransMenu.isSupported()) {

	var ms = new TransMenuSet(TransMenu.direction.right, 0, 0, TransMenu.reference.topRight);

	var menu1 = ms.addMenu(document.getElementById("ImgNav3"));
	menu1.addItem("Laser Treatments", "/lasertreatments.asp");	
	menu1.addItem("Facial Rejuventation Surgery", "/facialrejuvenation.asp");			
	menu1.addItem("Injectables", "/injectibles.asp");			
	menu1.addItem("Chemical Peels", "/chemicalpeels.asp");			
	menu1.addItem("Microdermabrasion", "/microdermabrasion.asp");		
	menu1.addItem("Facial & Skin Treatments", "/facials.asp");	
	menu1.addItem("Acne Treatments", "/acnetreatments.asp");
	menu1.addItem("Waxing", "/bodywaxing.asp");	

	var menu2 = ms.addMenu(document.getElementById("ImgNav5"));
	menu2.addItem("Revision Skincare", "/products.asp?Category=Revision");
	menu2.addItem("SkinMedica", "/products.asp?Category=SkinMedica");
	menu2.addItem("Latisse", "/products.asp?Category=Latisse");	
	
	//==================================================================================================
	// write drop downs into page
	//==================================================================================================
	// this method writes all the HTML for the menus into the page with document.write(). It must be
	// called within the body of the HTML page.
	//==================================================================================================
	TransMenu.renderAll();
}
