sfHover = function() {
var sfEls=new Array();
sfEls[0] = document.getElementById("pulldown-menu").getElementsByTagName("LI");
for (var i=0; i<sfEls.length; i++) {
for (var j=0; j<sfEls[i].length; j++) {
sfEls[i][j].onmouseout=function() {
this.className=this.className.replace(new RegExp(" hover\\b"), "");
document.getElementById("pulldown-menu").style.backgroundImage="url('images/css/top-roh1.gif')";
document.getElementById("pulldown-menu").style.backgroundPosition="0px 0px";
}
sfEls[i][j].onmouseover=function() {
this.className+=" hover";
document.getElementById("pulldown-menu").style.backgroundImage="url('images/css/top-roh3.gif')";
document.getElementById("pulldown-menu").style.backgroundPosition="0px -1px";
}
}
}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);

