/*
        Rollover fixes for older IE versions - Artistic Digital Services
*/

startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  }
 }
}


sfHover = function() {
    var target = document.getElementById("stick1");
    var target2 = document.getElementById("stick2");
    var target3 = document.getElementById("stick3");
    
    target.onmouseover=function() {
            this.className+=" sfhover";
        }
    target.onmouseout=function() {
            this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
        }
    target2.onmouseover=function() {
            this.className+=" sfhover";
        }
    target2.onmouseout=function() {
            this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
        }
    target3.onmouseover=function() {
            this.className+=" sfhover";
        }
    target3.onmouseout=function() {
            this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
        }
}
if (window.attachEvent) window.attachEvent("onload", sfHover);
window.onload=startList;