<!--
window.onload = function() { 
  // ******** THIS CODE BLOCK WILL EXAMINE THE PAGE LINKS AND SET THE CURRENT LINK A SPECIFIED COLOR
  var curr_link_color = "#FFFFFF";
  var a_link = document.getElementById("top_nav").getElementsByTagName("A");        // make an array of the A tags
  var a_cell = document.getElementById("top_nav").getElementsByTagName("TD");        // make an array of the TD tags
//var a_link = document.getElementById("nav").getElementsByTagName("A"); // IF USING MULTIPLE NAVS THAT NEED DIFFERENT COLORS, USE THIS LINK INSTEAD AND WRAP THE A TAGS WITH AN ELEMENT THAT HAS AN ID
  var p_link = (String(document.location)).toLowerCase(); // get the current page link
  for(var i=0; i < a_link.length; i++) {                  // parse thru the links array
    if ((String(a_link[i])).toLowerCase() == p_link) {    // compare array link to current link
      a_link[i].style.color=curr_link_color;              // set the color 
      a_link[i].style.background='none';                  // set the background image
      a_cell[i].style.borderBottomStyle='none';           // set the border
    }//end if
  }//next
  return true;
  // ******** END CODE BLOCK ******** //
}//end onload
-->
