// 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['fund_distributions.shtml'] = 6;
tab_menu_thingy['approved_joint_programmes.shtml'] = 7;
tab_menu_thingy['programme_commitments_disbursements.shtml'] = 8;
tab_menu_thingy['progress_reports.shtml'] = 9;
tab_menu_thingy['documents_useful_links.shtml'] = 10;
tab_menu_thingy['faqs.shtml'] = 11;
tab_menu_thingy['contacts.shtml'] = 12;
tab_menu_thingy['programme_preparation.shtml'] = 13;
tab_menu_thingy['reporting.shtml'] = 14;
tab_menu_thingy['thematic_areas.shtml'] = 15;
tab_menu_thingy['commitments_deposits.shtml'] = 16;
tab_menu_thingy['participating_orgs.shtml'] = 17;
tab_menu_thingy['joint_programmes.shtml'] = 18;

for (key in tab_menu_thingy){
	if (window.location.pathname.indexOf('/' + key) > -1){
		highlight = document.getElementById('d' + tab_menu_thingy[key]);
		highlight.className = 'on';
	}
}
