function navChanger(divId, locationId) {


if (locationId == "top") {
  document.getElementById(divId).className="topNavCurrent";
}

if (locationId == "leftSubCurrent") {
  document.getElementById(divId).className="leftSubCurrent";
}


}