function MW_establish_table_striping() {
	$("table tr:even").addClass("altrow");
}

function _MW_set_region_jumpmenus() {
	$.fn.jumpmenu.defaults.menudefault = "Select country";
	$.fn.jumpmenu.defaults.menuitems = {
		"Asia/Pacific": "/locations/asia_pacific/",
		"Europe, Middle East and Africa": "/locations/europe_middle_east_and_africa/",
		"Latin America": "/locations/latin_america/",
		"North America": "/locations/north_america/"
	};
}

function _MW_set_office_jumpmenus() {
	$.fn.jumpmenu.defaults.menudefault = "Select office";
	$.fn.jumpmenu.defaults.menuitems = {
		"Amsterdam": "/locations/europe_middle_east_and_africa/amsterdam/",
		"Athens": "/locations/europe_middle_east_and_africa/athens/",
		"Atlanta": "/locations/north_america/atlanta/",
		"Auckland": "/locations/asia_pacific/auckland/",
		"Austin": "/locations/north_america/austin/",
		//"Bad Homburg": "/locations/europe_middle_east_and_africa/bad_homburg/",
		"Baltimore": "/locations/north_america/baltimore/",
		"Bangalore": "/locations/asia_pacific/bangalore/",
		"Beijing": "/locations/asia_pacific/beijing/",
		"Belgrade": "/locations/europe_middle_east_and_africa/belgrade/",
		"Bogotá": "/locations/latin_america/bogota/",
		"Brussels": "/locations/europe_middle_east_and_africa/brussels/",
		"Bucharest": "/locations/europe_middle_east_and_africa/bucharest/",
		"Buenos Aires": "/locations/latin_america/buenos_aires/",
		"Calgary": "/locations/north_america/calgary/",
		"Caracas": "/locations/latin_america/caracas/",
		"Chennai": "/locations/asia_pacific/chennai/",
		"Chicago": "/locations/north_america/chicago/",
		"Copenhagen": "/locations/europe_middle_east_and_africa/copenhagen/",
		"Curitiba": "/locations/latin_america/curitiba/",
		"Dallas": "/locations/north_america/dallas/",
		"Delhi": "/locations/asia_pacific/delhi/",
		"Dubai": "/locations/europe_middle_east_and_africa/dubai/",
		"D&uuml;sseldorf": "/locations/europe_middle_east_and_africa/dusseldorf/",
		"Frankfurt": "/locations/europe_middle_east_and_africa/frankfurt/",
		//"Ghent": "/locations/europe_middle_east_and_africa/ghent/",
		"Helsinki": "/locations/europe_middle_east_and_africa/helsinki/",
		"Hong Kong": "/locations/asia_pacific/hong_kong/",
		"Hyderabad": "/locations/asia_pacific/hyderabad/",
		"Istanbul": "/locations/europe_middle_east_and_africa/istanbul/",
		"Johannesburg": "/locations/europe_middle_east_and_africa/johannesburg/",
		"Lima": "/locations/latin_america/lima/",
		"Ljubljana": "/locations/europe_middle_east_and_africa/ljubljana/",
		"London": "/locations/europe_middle_east_and_africa/london/",
		"Los Angeles": "/locations/north_america/los_angeles/",
		"Lyon": "/locations/europe_middle_east_and_africa/lyon/",
		"Madrid": "/locations/europe_middle_east_and_africa/madrid/",
		//"Medellin": "/locations/latin_america/medellin/",
		"Mexico City": "/locations/latin_america/mexico_city/",
		"Miami": "/locations/north_america/miami/",
		"Milan": "/locations/europe_middle_east_and_africa/milan/",
		"Montevideo": "/locations/latin_america/montevideo/",
		"Montreal": "/locations/north_america/montreal/",
		"Mumbai": "/locations/asia_pacific/mumbai/",
		"Mumbai FS": "/locations/asia_pacific/mumbai_fs/",
		"Nashville": "/locations/north_america/nashville/",
		"New York": "/locations/north_america/new_york/",
		"Oslo": "/locations/europe_middle_east_and_africa/oslo/",
		//"Panama City": "/locations/latin_america/panama_city/",
		"Paris": "/locations/europe_middle_east_and_africa/paris/",
		"Pune": "/locations/asia_pacific/pune/",
		"Rio de Janeiro": "/locations/latin_america/rio_de_janeiro/",
		"San Francisco": "/locations/north_america/san_francisco/",
		"Santa Barbara": "/locations/north_america/santa_barbara/",
		"Santiago": "/locations/latin_america/santiago_de_chile/",
		"São Paulo": "/locations/latin_america/sao_paulo/",
		"Seoul": "/locations/asia_pacific/seoul/",
		"Shanghai": "/locations/asia_pacific/shanghai/",
		"Sofia": "/locations/europe_middle_east_and_africa/sofia/",
		"Stockholm": "/locations/europe_middle_east_and_africa/stockholm/",
		"Stuttgart": "/locations/europe_middle_east_and_africa/stuttgart/",
		"Sydney": "/locations/asia_pacific/sydney/",
		"Toronto": "/locations/north_america/toronto/",
		"Tokyo": "/locations/asia_pacific/tokyo/",
		"Vienna": "/locations/europe_middle_east_and_africa/vienna/",
		//"Warsaw": "/locations/europe_middle_east_and_africa/warsaw/",
		"Zurich": "/locations/europe_middle_east_and_africa/zurich/"
	};
}

function MW_establish_jumpmenus() {
	if ($("#primary .contact").length > 0) {
		_MW_set_region_jumpmenus();
		$("#primary .contact").append('<p class="findcontact">Find a contact in your country <span class="jumpmenu-contact"></span></p>');
		$(".jumpmenu-contact").jumpmenu();
	}
	
	if ($(".office-jumpmenu").length > 0) {
		_MW_set_office_jumpmenus();
		$(".office-jumpmenu").empty().append('<p>Find an office near you: <span class="jumpmenu-office"></span></p>');
		$(".jumpmenu-office").jumpmenu();
	}
}

/* Hover fix for IE (http://htmldog.com/articles/suckerfish/dropdowns/) */
sfHover = function() {
	var sfEls = document.getElementById("mainnav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);
/* End Hover fix */

$(document).ready( function() {
	MW_establish_table_striping();
	MW_establish_jumpmenus();
});