if (mtDropDown.isSupported()) {

var ms = new mtDropDownSet(mtDropDown.direction.down, 0, -1, mtDropDown.reference.bottomLeft);

var menu1 = ms.addMenu(document.getElementById("menu1"));
menu1.addItem("&nbsp;&nbsp;&nbsp;home","index.html");
menu1.addItem("&nbsp;&nbsp;&nbsp;staff","staff.htm");
menu1.addItem("&nbsp;&nbsp;&nbsp;hours","hours.htm");
menu1.addItem("&nbsp;&nbsp;&nbsp;calendar of events","calendar_of_events.htm");
menu1.addItem("&nbsp;&nbsp;&nbsp;studio schedule","pdfs/Studio-Schedule-2009.pdf");
menu1.addItem("&nbsp;&nbsp;&nbsp;kids at natural high","kids_at_natural_high.htm");
menu1.addItem("&nbsp;&nbsp;&nbsp;child minding","child_minding.htm");
menu1.addItem("&nbsp;&nbsp;&nbsp;employment","employment.htm");
menu1.addItem("&nbsp;&nbsp;&nbsp;community Involvement","community.htm");
menu1.addItem("&nbsp;&nbsp;&nbsp;membership","membership.htm");
menu1.addItem("&nbsp;&nbsp;&nbsp;testimonials","testimonials.htm");

var menu2 = ms.addMenu(document.getElementById("menu2"));
menu2.addItem("&nbsp;&nbsp;&nbsp;facility design","facility_design.htm");
menu2.addItem("&nbsp;&nbsp;&nbsp;helpful resources","resources.htm");
menu2.addItem("&nbsp;&nbsp;&nbsp;recommended products","retail.htm");
menu2.addItem("&nbsp;&nbsp;&nbsp;exercise examples","exercises.htm");
menu2.addItem("&nbsp;&nbsp;&nbsp;contact us","contact.htm");

var menu3 = ms.addMenu(document.getElementById("menu3"));
menu3.addItem("&nbsp;&nbsp;&nbsp;personal training","per_training.htm");
menu3.addItem("&nbsp;&nbsp;&nbsp;endurance training","endurance.htm");
menu3.addItem("&nbsp;&nbsp;&nbsp;bikefit","bikefit.htm");
menu3.addItem("&nbsp;&nbsp;&nbsp;holistic exercise & lifestyle coaching","lifestyle_coaching.htm");
menu3.addItem("&nbsp;&nbsp;&nbsp;team training","team.htm");


mtDropDown.renderAll();
}
