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);
		var ms2 = new mtDropDownSet(mtDropDown.direction.right, 0, -108, mtDropDown.reference.topLeft);
	} else {
		var ms = new mtDropDownSet(mtDropDown.direction.down, 0, 0, mtDropDown.reference.bottomLeft);
		var ms2 = new mtDropDownSet(mtDropDown.direction.right, 0, -108, mtDropDown.reference.bottomleft);
	}
/*
	var menu1 = ms.addMenu(document.getElementById("what"));
	menu1.addItem("Contact Info", "contact.htm", false);
	menu1.addItem("Senior Pastor", "senior_pastor.htm", false);
	menu1.addItem("Ministry Development", "ministry_development.htm", false);
	menu1.addItem("Worship", "worship.htm", false);
	menu1.addItem("Our Staff", "our_staff.htm", false);
*/
	var menu1 = ms.addMenu(document.getElementById("what"));
	menu1.addItem("On Sunday Morning", "on_sunday_morning.htm", false);
	menu1.addItem("For the Children/Youth", "for_the_children.htm", false);
	menu1.addItem("Other Groups / Events", "other_groups_events.htm", false);

	var menu1a = ms.addMenu(document.getElementById("about"));
	menu1a.addItem("Meet the Staff", "our_staff.htm", false);
	menu1a.addItem("Who Comes Here?", "who_comes_here.htm", false);
	menu1a.addItem("Take a Tour", "take_a_tour.htm", false);

	var menu2 = ms2.addMenu(document.getElementById("why"));
	menu2.addItem("Resources / Media", "resources_media.htm", false);
	menu2.addItem("Ministry Pages", "ministries.htm", false);
	menu2.addItem("Calendar of Events", "detailed_calendar.htm", false);
	menu2.addItem("Printed Forms", "printed_forms.htm", false);
	menu2.addItem("Church Directory", "http://om099249.onlineolanmills.com/photo_directory/?letter=All&sortby=", false);
	
	mtDropDown.renderAll();
}