// JavaScript Document

var tab_menu_thingy = new Array();
tab_menu_thingy['overview.shtml'] = 1;
tab_menu_thingy['assistance_strategy.shtml'] = 2;
tab_menu_thingy['governance.shtml'] = 3;
tab_menu_thingy['decision_making_process.shtml'] = 4;
tab_menu_thingy['participating_UN_organizations.shtml'] = 5;
tab_menu_thingy['donor_contributions.shtml'] = 6;
tab_menu_thingy['pledges_commitments_deposits.shtml'] = 7;

tab_menu_thingy['projects_approved.shtml'] = 9;
tab_menu_thingy['projects_commitments_disbursements.shtml'] = 10;
tab_menu_thingy['project_progress_reports.shtml'] = 11;
tab_menu_thingy['documents_useful_links.shtml'] = 12;
tab_menu_thingy['faqs.shtml'] = 13;
tab_menu_thingy['contacts.shtml'] = 14;
//tab_menu_thingy['non_participating_UN_organizations.shtml'] = 15;

for (key in tab_menu_thingy){
	if (window.location.pathname.indexOf('/' + key) > -1){
		highlight = document.getElementById('d' + tab_menu_thingy[key]);
		highlight.className = 'on';
	}
}
