// JavaScript Document
<script language="javascript" src="js/jslibrary.js" type="text/javascript"></script>
<script type="text/javascript"><!--//--><![CDATA[//><!--

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].onmouseout=function() {
            // **** WAS THIS ****
            // this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
            // **** Changed to this setTimeout setup ****
            var t = this;
            setTimeout(function() {
                t.className=t.className.replace(new RegExp(" sfhover\\b"), "");
            }, 10);
        }
    }
}
if (window.attachEvent) window.attachEvent("onload", sfHover)

//--><!]]></script>
