if (mtDropDown.isSupported()) {
var ms = new mtDropDownSet(mtDropDown.direction.down, 0, 0, mtDropDown.reference.bottomLeft);

//	Jason, add var and menu to match the menu and render all at the bottom {

// One
var menu1 = ms.addMenu(document.getElementById("menu1"));
menu1.addItem("&#8226; Mission", "mission.htm");
menu1.addItem("&#8226; History", "history.htm");
menu1.addItem("&#8226; Board of Directors", "board.htm");
menu1.addItem("&#8226; Fundraising", "fundraising.htm");

// Two
var menu2 = ms.addMenu(document.getElementById("menu2"));
menu2.addItem("&#8226; Upcoming IPAD Events", "upcoming.htm");
menu2.addItem("&#8226; Past Events", "pastevents.htm");
menu2.addItem("&#8226; National Events", "natevents.htm");
menu2.addItem("&#8226; PKU in the News", "pkunews.htm");
menu2.addItem("&#8226; Volunteer Opportunities", "volunteer.htm");

// Three
var menu3 = ms.addMenu(document.getElementById("menu3"));
menu3.addItem("&#8226; Disorder Information", "disoinfo.htm");
menu3.addItem("&#8226; New Family Information", "newfamily.htm");
menu3.addItem("&#8226; Clinic Information", "clinic.htm");
menu3.addItem("&#8226; Returning to Diet", "return.htm");
menu3.addItem("&#8226; New Research", "research.htm");

// Four
var menu4 = ms.addMenu(document.getElementById("menu4"));
menu4.addItem("&#8226; Resources", "resources.htm");
menu4.addItem("&#8226; Support Organizations", "support.htm");
menu4.addItem("&#8226; Information Kit", "infokit.htm");

mtDropDown.renderAll();}