// JavaScript Document
function navOn(){

	
url=location.toString(); 	/*Turns URL into a string*/


	/* Top level pages and navigation */
	if(url.search("/about-iti/") != -1){
		document.images.about.src = "/i/about_iti_over.gif"
	}
	else if(url.search("/program-services/") != -1){
		document.images.programs_services.src = "/i/programs_services_over.gif"
		//document.getElementById("business_economic_development-subnav").style.display = "block"; // This is the id of the DIV surounding the subnav list of Program services 
		//document.getElementById("program_services-subnav").style.display = "block";
		//document.getElementById("program_services").className = "on"; // This type of line will turn on the link with ID program-services
	}
		else if(url.search("/strategiesagreements/") != -1){
		document.images.strategies_agreements.src = "/i/strategies_agreements_over.gif"
	}
		else if(url.search("/publications/") != -1){
		document.images.publications.src = "/i/publications_over.gif"
	}
		else if(url.search("/contactus/") != -1){
		document.images.contact_us.src = "/i/contact_us_over.gif"
	}

	else{
		document.images.home.src = "/i/home_over.gif"
	}

/*********** Sub page navigation ********************/

	/* About Iti sub pages */
	/*if(url.search("") != -1){ //SUBPAGE 1 OF ABOUT ITI
		//document.getElementById("program_services").style.display = "block"; // This is the id of the Program services subnav link, This line will turn on the highlight for it
		document.getElementById("program-services-subnav").style.display = "block"; // This is the id of the DIV surounding the subnav list of Program services 
	}
	else if(url.search("") != -1){ //SUBPAGE2 OF ABOUT ITI
	document.getElementById("program-services").className = "on";
	}*/
}