function enable_menues_for_ie()
{
	if (document.all)
	{
        uls = document.getElementsByTagName('UL');

        for(i = 0; i < uls.length; i++)
        {
		
		
		
            if (uls[i].className == 'dropdown')
            {
                var lisk = uls[i].getElementsByTagName('li');

                for (k = 0; k < lisk.length; k++)
                {
                    if(lisk[k].lastChild.tagName == 'UL')
                    {
                        lisk[k].onmouseover = function() { this.lastChild.style.display = 'block'; }
                        lisk[k].onmouseout = function() { this.lastChild.style.display = 'none'; }
                    }
                }
            } 
			
		
			
			
			
        }
    }
}
