<!--
  // ******** THIS CODE BLOCK WILL EXAMINE THE PAGE LINKS AND SET THE CURRENT LINK A SPECIFIED COLOR
window.onload = function() { 
  var curr_link_color = "#000000";
  var curr_bg_color   = "#4daf45";
  //var a_link = document.getElementsByTagName("A");        // make an array of the A tags
	var a_link = document.getElementById("main_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 (p_link.indexOf((String(a_link[i])).toLowerCase()) != -1) {  //we're looking for an occurance of the the p_link in the a_link after we string and lowercase
      a_link[i].style.color=curr_link_color;              // set the color 
      a_link[i].style.backgroundColor=curr_bg_color;      // set the background color
      }//end if
  }//next
  // now do the mini nav
  var curr_link_color = "#4daf45";
  var curr_bg_color   = "#4daf45";
  //var a_link = document.getElementsByTagName("A");        // make an array of the A tags
	var a_link = document.getElementById("mini_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.backgroundColor=curr_bg_color;      // set the background color
      }//end if
  }//next
  return true;

// ******** END CODE BLOCK ******** //
}//end onload
-->
