function plansrollon() {
  if (window.event.srcElement.className == "plans") 
  { window.event.srcElement.className = "planshighlight"; }
}
function plansrolloff() {
  if (window.event.srcElement.className == "planshighlight") {
     window.event.srcElement.className = "plans";
  }
}

function guidelinesrollon() {
  if (window.event.srcElement.className == "guidelines") 
  { window.event.srcElement.className = "guidelineshighlight"; }
}
function guidelinesrolloff() {
  if (window.event.srcElement.className == "guidelineshighlight") {
     window.event.srcElement.className = "guidelines";
  }
}

function resourcesrollon() {
  if (window.event.srcElement.className == "resources") 
  { window.event.srcElement.className = "resourceshighlight"; }
}
function resourcesrolloff() {
  if (window.event.srcElement.className == "resourceshighlight") {
     window.event.srcElement.className = "resources";
  }
}


function discussionsrollon() {
  if (window.event.srcElement.className == "discussions") 
  { window.event.srcElement.className = "discussionshighlight"; }
}
function discussionsrolloff() {
  if (window.event.srcElement.className == "discussionshighlight") {
     window.event.srcElement.className = "discussions";
  }
}


function standardsrollon() {
  if (window.event.srcElement.className == "standards") 
  { window.event.srcElement.className = "standardshighlight"; }
}
function standardsrolloff() {
  if (window.event.srcElement.className == "standardshighlight") {
     window.event.srcElement.className = "standards";
  }
}


function reportsrollon() {
  if (window.event.srcElement.className == "reports") 
  { window.event.srcElement.className = "reportshighlight"; }
}
function reportsrolloff() {
  if (window.event.srcElement.className == "reportshighlight") {
     window.event.srcElement.className = "reports";
  }
}

