function menuHover(nav) {
    var topnav = document.getElementById(nav);
    if(document.all && topnav)
    {
        if (topnav != null && topnav.currentStyle)
        {
            var menuItem=topnav.getElementsByTagName("LI");
            for(i=0;i<menuItem.length;i++){
                menuItem[i].onmouseover=function(){
                    this.className+=" over";
                    showIframe(this, "block");
                }
                menuItem[i].onmouseout=function(){
                    this.className=this.className.replace(" over", "");
                    showIframe(this, "none");
                }
            }
        }
    }
}
function showIframe(topnav, value) {
    for (ifcnt = 0; ifcnt < topnav.childNodes.length; ifcnt++) {
        if (topnav.childNodes[ifcnt].tagName == "IFRAME") {
            topnav.childNodes[ifcnt].style.display = value;
        }
    }
}

