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

//	Kimmer, add var and menu to match the menu and render all at the bottom {
//	Listings
var menu1 = ms.addMenu(document.getElementById("menu1"));
menu1.addItem("&#8226; My Listings", "listings.html");
menu1.addItem("&#8226; State Listings", "listings.htm");

//	About Allen
var menu2 = ms.addMenu(document.getElementById("menu2"));
menu2.addItem("&#8226; Our Office", "office.htm");
menu2.addItem("&#8226; About Allen", "about.htm");

//	Related Links
var menu3 = ms.addMenu(document.getElementById("menu3"));
menu3.addItem("&#8226; Calculator", "calculator.htm");
menu3.addItem("&#8226; Moving Information", "moving.htm");
menu3.addItem("&#8226; Buying Information", "cma.htm");
menu3.addItem("&#8226; Selling Information", "selling.htm");

//	Contact Us
var menu4 = ms.addMenu(document.getElementById("menu4"));
menu4.addItem("&#8226; E-mail Us", "mailto:allen@allenmartindale.com");
menu4.addItem("&#8226; Contact Information", "contact.htm");
menu4.addItem("&#8226; How To find us", "map.htm");

mtDropDown.renderAll();}