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("nav01"));
	menu1.addItem("The Partners", "the_partners.htm", false);
	menu1.addItem("&nbsp;&nbsp;&nbsp;Russ Holihan", "russ_holihan.htm", false);
	menu1.addItem("&nbsp;&nbsp;&nbsp;Mary Jo Newtown", "mary_jo_newtown.htm", false);
	menu1.addItem("&nbsp;&nbsp;&nbsp;Ben Bauer", "ben_bauer.htm", false);
	menu1.addItem("Therapeutic Areas", "therapeutic_areas.htm", false);
	menu1.addItem("Client Types", "client_types.htm", false);
	menu1.addItem("Client Satisfaction", "client_satisfaction.htm", false);
	menu1.addItem("Press", "press.htm", false);
	
	
	var menu2 = ms.addMenu(document.getElementById("nav04"));
	menu2.addItem("How to Reach Us", "how_to_reach_us.htm", false);
	menu2.addItem("Request for Quote", "request_for_quote.htm", false);
	menu2.addItem("Employment", "employment.htm", false);

	mtDropDown.renderAll();
}
