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

//	This is where you will create the dropdowns

//	Nav one
var menu1 = ms.addMenu(document.getElementById("menu1"));
menu1.addItem("Meet the Team", "team.php");
menu1.addItem("Preferred Vendors", "vendors.php");
menu1.addItem("Mission Statement", "mission.php");
menu1.addItem("Testimonials", "testimonials.php");
menu1.addItem("Resume", "resume.php");
menu1.addItem("Corporate Clients", "corporateclients.php");

var menu2 = ms.addMenu(document.getElementById("menu2"));
menu2.addItem("Scholarship Fund", "scholarship.php");
menu2.addItem("Movie Day", "movie.php");
menu2.addItem("Pie Event", "pie.php");
menu2.addItem("Back to School Bash", "school.php");
menu2.addItem("Death by Chocolate", "chocolate.php");


var menu3 = ms.addMenu(document.getElementById("menu3"));
menu3.addItem("Our Listings", "idx_wm.php");
menu3.addItem("Sold Gallery", "sold.php");

var menu4 = ms.addMenu(document.getElementById("menu4"));
menu4.addItem("Marketing Strategy", "marketingstrategy.php");
menu4.addItem("What's My Home Worth?", "form_homeWorth.php");

var menu5 = ms.addMenu(document.getElementById("menu5"));
menu5.addItem("Want to Buy a Home?", "form_buyHome.php");
menu5.addItem("Mortgage Calculator", "calculator_afford.php");
menu5.addItem("Monthly Payment Calculator", "calculator_simple.php");
menu5.addItem("Online Contracts", "http://www.onlinecontracts.net");
menu5.addItem("Home Maintenance Guide", "images/Home%20Maintenance%20Guide.pdf");

var menu6 = ms.addMenu(document.getElementById("menu6"));
menu6.addItem("Email Us", "mailto:william@williambustos.com");
menu6.addItem("Text Us", "form_textUs.php");
menu6.addItem("How Can We Help?", "contact.php");
menu6.addItem("How To Find Us", "map.php");

mtDropDown.renderAll();}
