sfHover = function() {
var sfEls = document.getElementById("nav").getElementsByTagName("LI");
var sfhoverTXT = new RegExp(" sfhover\\b");
for (var i=0; i<sfEls.length; i++) {
sfEls[i].onmouseover=function() {
this.className=this.className.replace(sfhoverTXT, "");
this.className+=" sfhover";
}
sfEls[i].onmousemove=function() {
this.className=this.className.replace(sfhoverTXT, "");
this.className+=" sfhover";
}
sfEls[i].onmouseout=function() {
this.className=this.className.replace(sfhoverTXT, "");
this.className="";
}
}
}
sfHover = function() {
var sfEls = document.getElementById("nav").getElementsByTagName("LI");
for (var i=0; i<sfEls.length; i++) {
sfEls[i].onmouseover=function() {
this.className="sfhover";
}
sfEls[i].onmousemove=function() {
this.className="sfhover";
}
sfEls[i].onmouseout=function() {
this.className="";
}
}
}
<!--[if lte IE 6]>
<link href="/templates/jw_inetgazette/css/template_ie.css" rel="stylesheet" type="text/css" />
<![endif]-->
<!--[if IE 6]>
<link href="/templates/jw_inetgazette/css/template_ie.css" rel="stylesheet" type="text/css" />
<![endif]-->
Time to create page: 0.063 seconds