function insertMenuFixDivs(A){for(var B=0;B<A.length;B++){if(A[B].tagName=="LI"){targetNodeSet=A[B].childNodes;
for(var C=0;C<targetNodeSet.length;C++){if((targetNodeSet[C].nodeType==3)&&(targetNodeSet[C].nextSibling.tagName=="UL")){newNode=document.createElement("div");
newNode.setAttribute("class","iemenufix");newNode.appendChild(document.createTextNode(targetNodeSet[C].nodeValue));
targetNodeSet[C].parentNode.replaceChild(newNode,targetNodeSet[C]);insertMenuFixDivs(targetNodeSet[C].nextSibling.childNodes);
}}}}}sfHover=function(){var C=document.getElementById("topnav");var B=C.getElementsByTagName("LI");
for(var A=0;A<B.length;A++){B[A].onmouseover=function(){this.className+=" sfhover";
};B[A].onmouseout=function(){this.className=this.className.replace(new RegExp(" sfhover\\b"),"");
};}if(C.childNodes.length>1){insertMenuFixDivs(C.childNodes[1].childNodes);}};$(document).ready(function(){sfHover();
});

