1
0
mirror of https://github.com/e107inc/e107.git synced 2025-10-11 13:04:28 +02:00
Files
php-e107/e107_themes/_blank/menu/menu.js
2008-12-09 15:19:03 +00:00

17 lines
426 B
JavaScript

sfHover = function() {
var sfEls = document.getElementById("nav").getElementsByTagName("LI");
for (var i=0; i<sfEls.length; i++) {
sfEls[i].onmouseover=function() {
if(this.className != 'fs-linkSep')
this.className+=" sfhover";
}
sfEls[i].onmouseout=function() {
this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
}
}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);