// JavaScript Document
<!--
function Getpage() {  
  if (!document.getElementsByTagName) return;   
  var anchors = document.getElementsByTagName("a");  
  var thispage = location.href;  
  //var thispage = document.location;
  for (var i=0; i<anchors.length; i++) {   
  var anchor = anchors[i];  
  //thisHREF = anchor.getAttribute("href"); 
  //thisHREF = anchors[i].href.split("#")[0]; 
  thisHREF = anchors[i].href; 
//  if(a[i].href.split("#")[0] == window.location.href.split("#")[0])
  if ((thisHREF == thispage) || (location.protocol + "//" + location.hostname + thisHREF == thispage)) {  
  //if (thisHREF == thispage) {  
  anchor.id = "current"; 
  return;  
  } 
  //alert("This is the anchor: " + thisHREF + "         This is the page: " + thispage);
  //alert("This is the 'this' path: " + thispageNet);
  }  

}  
//-->
