// JScript source code
friarsIeHover = function() 
{     
    var imageRoot = "http://localhost/dotnetnuke/Portals/0/Skins/FriarsDNNSkin/Assets/Images/Menu/"
    var obj=document.getElementById('friarsCssMenu');/*FindObj('friarsCssMenu');*/
    for(i=0;i<obj.childNodes.length; i++)
    {
        parentNode = obj.childNodes[i];
        if (parentNode.nodeName=="LI")
        {
        
            parentNode.onmouseover=function()
            {
                this.className+=" friarsIeHover";

            }
  
            parentNode.onmouseout=function()
            {
                this.className=this.className.replace(new RegExp(" friarsIeHover\\b"), "");
            }  
        }
    }
    
    
    
    /*var sfEls = document.getElementById("friarsCssMenu").getElementsByTagName("LI");     
    for (var i=0; i<sfEls.length; i++) 
    {         
        sfEls[i].onmouseover=function(){this.className+=" friarsIeHover";}         
        sfEls[i].onmouseout=function(){this.className=this.className.replace(new RegExp(" friarsIeHover\\b"), "");}     
    } */
} 


if (window.attachEvent) window.attachEvent("onload", friarsIeHover);



