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

	var menu1 = ms.addMenu(document.getElementById("about"));
	menu1.addItem("SERVICES PROVIDED", "services_provided.htm", false);
	menu1.addItem("WHERE IT'S ACCEPTED", "fuel_cards_acceptance.htm", false);
	menu1.addItem("NEWS", "fleet_fuel_card_news.htm", false);

	var menu1 = ms.addMenu(document.getElementById("mission"));
	menu1.addItem("MISSION", "fuel_card_mission.htm", false);
	menu1.addItem("CARBON FUND", "carbon_offsets_carbon_fund.htm", false);


	mtDropDown.renderAll();
}
