if (mtDropDown.isSupported()) {
	var IE = false;
	var ua = navigator.userAgent.toLowerCase();
	var an = navigator.appName;

	if (ua.indexOf("gecko") > -1) {
		IE = false;
	}
	else if (an == "Microsoft Internet Explorer") {
		if (document.getElementById) { IE = true; }
	}

	if (IE) {
		var ms = new mtDropDownSet(mtDropDown.direction.down, 9, 5, mtDropDown.reference.bottomLeft);
	} else {
		var ms = new mtDropDownSet(mtDropDown.direction.down, 9, 5, mtDropDown.reference.bottomLeft);
	}

	var menu1 = ms.addMenu(document.getElementById("menus"));
	menu1.addItem("Dining & Dessert Menus", "menu.html", false);
	menu1.addItem("Wine & Spirits Menus", "spirits.html", false);

	mtDropDown.renderAll();
}
