// JavaScript Document
var tab_menu_thingy = new Array();
tab_menu_thingy['countrycase_studies.shtml'] = 1;
tab_menu_thingy['policypractice_notes.shtml'] = 2;
tab_menu_thingy['res_disc_papers.shtml'] = 3;
tab_menu_thingy['communications.shtml'] = 4;
tab_menu_thingy['guide_toolkits.shtml'] = 5;
tab_menu_thingy['publications.shtml'] = 6;
tab_menu_thingy['events.shtml'] = 7;
tab_menu_thingy['related-websites.shtml'] = 8;
tab_menu_thingy['recommended_reading.shtml'] = 9;



for (key in tab_menu_thingy){
	if (window.location.pathname.indexOf('/' + key) > -1){
		highlight = document.getElementById('r' + tab_menu_thingy[key]);
		highlight.className = 'on';
	}
}
