
//insert this in the footer so that it loads last for each page.
//turns on the nav to indicate what page section you are on...
function navIndicator(){
	thisPage=location.href.substring((location.href.lastIndexOf("/"))+1);
	thisPage=thisPage.split("?",1);
	//alert(thisPage);
	if(thisPage=="default.asp"){
		//alert(thisPage + ": default");
		document.getElementById("home").className="on";
	}else if(thisPage=="our_services.asp" || thisPage=="breeders.asp" || thisPage=="growers.asp" || thisPage=="agents.asp" || thisPage=="marketing.asp"){
		document.getElementById("services").className="on";
		//subnav pages:
		if(thisPage=="breeders.asp"){
			document.getElementById("breeders").className="on";
		}else if(thisPage=="growers.asp"){
			document.getElementById("growers").className="on";
		}else if(thisPage=="agents.asp"){
			document.getElementById("agents").className="on";
		}else if(thisPage=="marketing.asp"){
			document.getElementById("marketing").className="on";
		}
	}else if(thisPage=="our_plants.asp" || thisPage=="view_plant.asp" || thisPage=="advanced_search.asp" || thisPage=="search_plants_extended.asp"){
		document.getElementById("plants").className="on";
	}else if(thisPage=="media_room_login.asp" || thisPage=="media_room.asp" || thisPage=="media_room_archives.asp"){
		document.getElementById("media").className="on";
	}else if(thisPage=="about_us.asp"){
		document.getElementById("about").className="on";
	}else if(thisPage=="contact_us.asp"){
		document.getElementById("contact").className="on";
	}else if(thisPage=="trade_access.asp" || thisPage=="trade_only_detail.asp" || thisPage=="trade_plants.asp"){
		document.getElementById("trade").className="on";
	}
}
window.onload=function(){navIndicator();}

