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