var tab_menu_thingy = new Array();
tab_menu_thingy['index.shtml'] = 1;
tab_menu_thingy['our_approach.shtml'] = 2;
tab_menu_thingy['regional.shtml'] = 3;
tab_menu_thingy['africa.shtml'] = 3;
tab_menu_thingy['arab-states.shtml'] = 3;
tab_menu_thingy['asia-pacific.shtml'] = 3;
tab_menu_thingy['europe-cis.shtml'] = 3;
tab_menu_thingy['lac.shtml'] = 3;
tab_menu_thingy['resources.shtml'] = 4;
tab_menu_thingy['connecting_people.shtml'] = 4;
tab_menu_thingy['countrycase_studies.shtml'] = 4;
tab_menu_thingy['policypractice_notes.shtml'] = 4;
tab_menu_thingy['res_disc_papers.shtml'] = 4;
tab_menu_thingy['communications.shtml'] = 4;
tab_menu_thingy['guide_toolkits.shtml'] = 4;
tab_menu_thingy['events.shtml'] = 4;
tab_menu_thingy['related-websites.shtml'] = 4;
tab_menu_thingy['about_us.shtml'] = 5;


for (key in tab_menu_thingy){
	if (window.location.pathname.indexOf('/' + key) > -1){
		highlight = document.getElementById('t' + tab_menu_thingy[key]);
		highlight.className = 'tab_on';
	}
}