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

//	PROPERTIES
var menu1 = ms.addMenu(document.getElementById("menu1"));
menu1.addItem("&#8226; Featured Listings", "listings.htm");
menu1.addItem("&#8226; State Listings", "listings_state.htm");

//	ABOUT
var menu2 = ms.addMenu(document.getElementById("menu2"));
menu2.addItem("&#8226; Our Professionals", "pros.html");
menu2.addItem("&#8226; Contact Us", "contact.html");

//	RESOURCES
var menu3 = ms.addMenu(document.getElementById("menu3"));
menu3.addItem("&#8226; Real Estate", "realestate.htm");
menu3.addItem("&#8226; Community", "community.htm");
menu3.addItem("&#8226; Government", "government.htm");

mtDropDown.renderAll();}