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, 15, 0, mtDropDown.reference.bottomLeft);
	} else {
		var ms = new mtDropDownSet(mtDropDown.direction.down, 15, 0, mtDropDown.reference.bottomLeft);
	}

	var menu1 = ms.addMenu(document.getElementById("nav_02"));
	menu1.addItem("Formal Wear", "/giliberto_formal_wear_nyc.htm", false);
	menu1.addItem("Suits", "/giliberto_custom_suits_nyc.htm", false);
	menu1.addItem("Sportcoats &amp; Trousers", "/giliberto_sportcoats_and_trousers.htm", false);
	menu1.addItem("Shirts", "/giliberto_custom_shirts_nyc.htm", false);
	menu1.addItem("Coats", "/custom_overcoats_polo_coats_nyc.htm", false);

	mtDropDown.renderAll();
}
