// 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()) {

		//==================================================================================================
		// create a set of dropdowns
		//==================================================================================================
		// the first param should always be down, as it is here
		//
		// The second and third param are the top and left offset positions of the menus from their actuators
		// respectively. To make a menu appear a little to the left and bottom of an actuator, you could use
		// something like -5, 5
		//
		// The last parameter can be .topLeft, .bottomLeft, .topRight, or .bottomRight to inidicate the corner
		// of the actuator from which to measure the offset positions above. Here we are saying we want the 
		// menu to appear directly below the bottom left corner of the actuator
		//==================================================================================================
		var ms = new TransMenuSet(TransMenu.direction.down, 0, 0, TransMenu.reference.bottomLeft);

		//==================================================================================================
		// create a dropdown menu
		//==================================================================================================
		// the first parameter should be the HTML element which will act actuator for the menu
		//==================================================================================================
		var menu1 = ms.addMenu(document.getElementById("menu1"));
		menu1.addItem("<b>&raquo;</b> ABOUT US", "http://www.woodlandsradiancespa.com/index.php/about_radiance/");
		menu1.addItem("<b>&raquo;</b> SPA POLICY", "http://www.woodlandsradiancespa.com/index.php/about_radiance/spa_policy/");
		menu1.addItem("<b>&raquo;</b> BIOGRAPHIES", "http://www.woodlandsradiancespa.com/index.php/about_radiance/biographies/");
		menu1.addItem("<b>&raquo;</b> TESTIMONIALS", "http://www.woodlandsradiancespa.com/index.php/about_radiance/testimonials/");

		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("<b>&raquo;</b> LASER TREATMENTS", "#");
		menu2.addItem("<b>&raquo;</b> BOTOX", "http://www.woodlandsradiancespa.com/index.php/medical_spa/botox/");
		menu2.addItem("<b>&raquo;</b> DERMAL FILLER", "http://www.woodlandsradiancespa.com/index.php/medical_spa/dermafiller/");
		menu2.addItem("<b>&raquo;</b> FACIAL PLASTIC SURGERY CONSULT", "http://www.woodlandsradiancespa.com/index.php/medical_spa/fpsc/");
		menu2.addItem("<b>&raquo;</b> SKIN TAG REMOVAL", "http://www.woodlandsradiancespa.com/index.php/medical_spa/skintagremoval/");
		menu2.addItem("<b>&raquo;</b> TRANSDERM MESOTHERAPY & LIPODISSOLVE", "http://www.woodlandsradiancespa.com/index.php/medical_spa/transdermmesotherapy/");
		menu2.addItem("<b>&raquo;</b> MESOGLOW", "http://www.woodlandsradiancespa.com/index.php/medical_spa/mesoglow/");
		menu2.addItem("<b>&raquo;</b> MICRO-LIPOSUCTION", "http://www.woodlandsradiancespa.com/index.php/medical_spa/microliposuction/");
		menu2.addItem("<b>&raquo;</b> SPIDER VEIN TREATMENT", "http://www.woodlandsradiancespa.com/index.php/medical_spa/spiderveintreatment/");
		menu2.addItem("<b>&raquo;</b> CORRECTIVE PEELS", "http://www.woodlandsradiancespa.com/index.php/medical_spa/correctivepeels/");
		menu2.addItem("<b>&raquo;</b> MICROCURRENT", "http://www.woodlandsradiancespa.com/index.php/medical_spa/microcurrent");
		menu2.addItem("<b>&raquo;</b> HYDRADERMABRASION", "http://www.woodlandsradiancespa.com/index.php/medical_spa/hydradermabrasian/");
		menu2.addItem("<b>&raquo;</b> LINKS", "http://www.woodlandsradiancespa.com/index.php/medical_spa/links/");
		
		var submenu0 = menu2.addMenu(menu2.items[0]);
		submenu0.addItem("<b>&raquo;</b> AFT (PHOTOFACIAL)", "http://www.woodlandsradiancespa.com/index.php/medical_spa/photofacial/");
		submenu0.addItem("<b>&raquo;</b> LASER ACNE TREATMENT", "http://www.woodlandsradiancespa.com/index.php/medical_spa/laseracnetreatments/");
		submenu0.addItem("<b>&raquo;</b> LASER SKIN TIGHTENING", "http://www.woodlandsradiancespa.com/index.php/medical_spa/laserskintightening/");
		submenu0.addItem("<b>&raquo;</b> FRACTIONAL LASER TREATMENTS (THE PIXEL)", "/index.php/medical_spa/fractionallasertreatments/");
		submenu0.addItem("<b>&raquo;</b> LASER HAIR REDUCTION", "/index.php/medical_spa/laserhairreduction/");

		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("<b>&raquo;</b> EXPERT SKIN CARE", "http://www.woodlandsradiancespa.com/index.php/spa_salon/expertskincare/");
		menu3.addItem("<b>&raquo;</b> MAKE UP SERVICES", "http://www.woodlandsradiancespa.com/index.php/spa_salon/makeupservices/");
		menu3.addItem("<b>&raquo;</b> MASSAGE THERAPY", "http://www.woodlandsradiancespa.com/index.php/spa_salon/massagetherapy/");
		menu3.addItem("<b>&raquo;</b> BODY WELLNESS TREATMENTS", "http://www.woodlandsradiancespa.com/index.php/spa_salon/bodywellnesstreatments/");
		menu3.addItem("<b>&raquo;</b> RADIANCE HAIR SALON", "http://www.woodlandsradiancespa.com/index.php/spa_salon/radiancehairsalon/");
		menu3.addItem("<b>&raquo;</b> EXPERT HAND AND FOOT CARE", "http://www.woodlandsradiancespa.com/index.php/spa_salon/experthandandfootcare/");
		menu3.addItem("<b>&raquo;</b> LINKS", "http://www.woodlandsradiancespa.com/index.php/spa_salon/links/");


		//==================================================================================================
		// 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();
	}