//Array of image names and sources
var modifier = 6;
var stringPosn = 5;

var navLibrary = new Array();
navLibrary[0] = "overview";
navLibrary[1] = "history";
navLibrary[2] = "motionpicture";
navLibrary[3] = "independent";
navLibrary[4] = "television";
navLibrary[5] = "musicappear";
navLibrary[6] = "literary";
navLibrary[7] = "theatre";
navLibrary[8] = "commercial";
navLibrary[9] = "sportsmarket";
navLibrary[10] = "consulting";
navLibrary[11] = "pressreleases";
navLibrary[12] = "tradeads";
navLibrary[13] = "wmacareers";
navLibrary[14] = "agentcareers";
navLibrary[15] = "newyork";
navLibrary[16] = "beverlyhills";
navLibrary[17] = "nashville";
navLibrary[18] = "london";
navLibrary[19] = "miami";
navLibrary[20] = "shanghai";
navLibrary[21] = "jimwiatt";
navLibrary[22] = "davewirtschafter";
navLibrary[23] = "normanbrokaw";
navLibrary[24] = "irvweintraub";

var whereRwe = this.location.href;
var locArray = whereRwe.split("/");
var theSection = locArray[stringPosn];
var setSection = -1
for(i = 0; i < navLibrary.length; i++){
	if(navLibrary[i] == theSection){
		setSection = i;
	}
}

if(setSection != -1){
	setSection = setSection + modifier;
	activeSubSection = theSection;
	document.images[theSection].src = navActive[setSection].src;
}
