
// ===================================================
// Change basepath to reflect the directory you are in
// Basepath is placed in each page
// If you are in root - "../images/head/"
// If you are one level down - "../../images/head/"
// If you are two levels down - "../../../images/head/"
// ===================================================

function initImg() {
	if ((navigator.appVersion.charAt(0) >= "4") || (navigator.appName == "Netscape")) {
		// Pre-Load images
		var locList = "location,loc_home,loc_telecommuting,loc_resources,loc_review,loc_gga,loc_escape,loc_conf,loc_contact,loc_search"
		var locArray = locList.split(",")
		var imageDB = new Array ()
		for (i=0; i < locArray.length; i++) {
			imageDB[locArray[i]] = new Image(240,55)
			imageDB[locArray[i]].src = basepath + locArray[i] + ".gif"
		}
	}
}

function swap(FileName) {
	if (document.images) {
		document.images['location'].src= basepath + FileName + ".gif";
	}
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
