function menuColorer() {
  var numLinks = document.links.length+"";
  var thisLoc = document.location.href+"";
  thisLoc = thisLoc.toLowerCase();
  var currMenuItem = "";
  for (i = 0; i<numLinks; i++) {
    currMenuItem = document.links[i].href.toLowerCase();
    if(thisLoc==currMenuItem && document.links[i].className=="bigItem") { // only do this for the left menu
      document.links[i].style.color="#243E64";
    }
  }
}

//now only maintained in one place: http://intranet/defgo.html
if (document.location.href.indexOf("testapp.defgosoftware.net/defgo.html"))
  document.location.href="http://intranet/defgo.html";

