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

//	This is where you will create the dropdowns

// Government
var menu1 = ms.addMenu(document.getElementById("menu1"));
menu1.addItem("&#8226; Mayor", "mayor.htm");
menu1.addItem("&#8226; City Council", "cc.htm");

// Calendar
var menu2 = ms.addMenu(document.getElementById("menu2"));
menu2.addItem("&#8226; School Info", "school.htm");

// Gallery
var menu3 = ms.addMenu(document.getElementById("menu3"));
menu3.addItem("&#8226; Photos", "photos.htm");

// Forms
var menu4 = ms.addMenu(document.getElementById("menu4"));
menu4.addItem("&#8226; Downloads", "forms.htm");

// Public Notices
var menu5 = ms.addMenu(document.getElementById("menu5"));
menu5.addItem("&#8226; School Info", "pubnot.htm");

mtDropDown.renderAll();}