// JavaScript Document
navHover = function() 
 { 
    if (document.getElementById("futbolmexico"))
    {
        var lis = document.getElementById("futbolmexico").getElementsByTagName("LI"); 
        for (var i=0; i<lis.length; i++) 
        { 
            lis[i].onmouseover=function() 
            {
            
                this.className+=" iehover"; 
            } 
            
            lis[i].onmouseout=function() 
            { 
                this.className=this.className.replace(new RegExp(" iehover\\b"), ""); 
            } 
        } 
    }
} 

navHover2 = function() 
 { 
    if (document.getElementById("futbolinternacional"))
    {
        var lis = document.getElementById("futbolinternacional").getElementsByTagName("LI"); 
        for (var i=0; i<lis.length; i++) 
        { 
            lis[i].onmouseover=function() 
            {
            
                this.className+=" iehover"; 
            } 
            
            lis[i].onmouseout=function() 
            { 
                this.className=this.className.replace(new RegExp(" iehover\\b"), ""); 
            } 
        } 
    }
} 
navHover3 = function() 
 { 
    if (document.getElementById("HDR_menuSeccion"))
    {
        var lis = document.getElementById("HDR_menuSeccion").getElementsByTagName("LI"); 
        for (var i=0; i<lis.length; i++) 
        { 
            lis[i].onmouseover=function() 
            {
            
                this.className+=" iehover"; 
            } 
            
            lis[i].onmouseout=function() 
            { 
                this.className=this.className.replace(new RegExp(" iehover\\b"), ""); 
            } 
        } 
    }
} 
navHover4 = function() 
 { 
    if (document.getElementById("futbolamericano"))
    {
        var lis = document.getElementById("futbolamericano").getElementsByTagName("LI"); 
        for (var i=0; i<lis.length; i++) 
        { 
            lis[i].onmouseover=function() 
            {
            
                this.className+=" iehover"; 
            } 
            
            lis[i].onmouseout=function() 
            { 
                this.className=this.className.replace(new RegExp(" iehover\\b"), ""); 
            } 
        } 
    }
} 
navHover5 = function() 
 { 
 	if (document.getElementById("basquetbol"))
    {
        var lis = document.getElementById("basquetbol").getElementsByTagName("LI"); 
        for (var i=0; i<lis.length; i++) 
        { 
            lis[i].onmouseover=function() 
            {
            
                this.className+=" iehover"; 
            } 
            
            lis[i].onmouseout=function() 
            { 
                this.className=this.className.replace(new RegExp(" iehover\\b"), ""); 
            } 
        } 
    }
} 
navHover6 = function() 
 { 
    if (document.getElementById("beisbol"))
    {
        var lis = document.getElementById("beisbol").getElementsByTagName("LI"); 
        for (var i=0; i<lis.length; i++) 
        { 
            lis[i].onmouseover=function() 
            {
            
                this.className+=" iehover"; 
            } 
            
            lis[i].onmouseout=function() 
            { 
                this.className=this.className.replace(new RegExp(" iehover\\b"), ""); 
            } 
        } 
    }
} 
navHover7 = function() 
 { 
    if (document.getElementById("autos"))
    {
        var lis = document.getElementById("autos").getElementsByTagName("LI"); 
        for (var i=0; i<lis.length; i++) 
        { 
            lis[i].onmouseover=function() 
            {
            
                this.className+=" iehover"; 
            } 
            
            lis[i].onmouseout=function() 
            { 
                this.className=this.className.replace(new RegExp(" iehover\\b"), ""); 
            } 
        } 
    }
} 

if (window.attachEvent) {
	window.attachEvent("onload", navHover); 
	window.attachEvent("onload", navHover2); 
	window.attachEvent("onload", navHover3); 
	window.attachEvent("onload", navHover4); 	
	window.attachEvent("onload", navHover5); 
	window.attachEvent("onload", navHover6); 	
	window.attachEvent("onload", navHover7); 
}
