sfHover = function() {
    if (!document.getElementsByTagName) return false;
    var sfElsB2 = document.getElementById("navlistb2").getElementsByTagName("ul");
    for (var i=0; i<sfElsB2.length; i++) {
        sfElsB2[i].parentNode.onmouseover= function() {
            this.lastChild.className+=" soasfhoverb2";
        }
        sfElsB2[i].parentNode.onmouseout=function() {
            this.lastChild.className=this.lastChild.className.replace(new RegExp(" soasfhoverb2\\b"), "");
        }
    }
}
if (window.attachEvent) window.attachEvent("onload", sfHover);
