if(window.addEventListener) window.addEventListener('load',setActiveMenu,false);
else if(window.attachEvent) window.attachEvent('onload',setActiveMenu);
else window.onload=setActiveMenu;
/*
if(/MSIE (5\.5|6\.)/.test(navigator.userAgent)) {
  document.getElementsByTagName("html")[0].className+=" ie"
}
*/
function setActiveMenu() {
  var here=location.href.replace(/^.+\/([a-z0-9]+)\.html$/,'$1').replace(/^.+\/$/,'index');
  var menu=document.getElementById('menu');
  var links=menu.getElementsByTagName("A");
  for(var i=0; i<links.length; i++) {
    var link=links[i];
    var href=link.getAttribute("href");
    link.onfocus=function(){this.blur()}
    if(href.indexOf(here)!=-1) {
      link.className="active";
    } 
  }
  var preload="bio,songs,visuals,gigs,contact,home".split(",");
  for(var i=0; i<preload.length; i++) {
    var img=new Image();
    img.src="img/glow/"+preload[i]+".png";
  }
  //document.body.onclick=function() { var cls=document.getElementsByTagName('html')[0].className; alert("["+cls+"]"); }
}
