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

	var menu1 = ms.addMenu(document.getElementById("nav_03"));
	menu1.addItem("Rich &amp; Robust", "/rich_and_robust.htm", false);
	menu1.addItem("Light &amp; Delicate", "/light_and_delicate.htm", false);
	menu1.addItem("Traditional &amp; Balanced", "/traditional_and_balanced.htm", false);
	menu1.addItem("Shelby Signature", "/premium.htm", false);

	mtDropDown.renderAll();
}
