/**
 *source: http://michaelraichelson.com/portfolio/code/automatic-website-navigation-highlight.php
*/
function donavhighlights(){
  if(!document.layers){
    var atags=document.getElementsByTagName("a");
      for(var i=0;i<atags.length;i++){
         if(atags[i].parentNode.parentNode.className=="domMenuMain_menuElement"){
            if(atags[i].innerHTML.toLowerCase()==page_name){
               atags[i].parentNode.parentNode.id="activeMenuElement";
            }
         }
      }
  }
}
