ieHoverFix = function()
{
  if (document.all && document.getElementById)
  {
    var a_ul = document.getElementsByTagName('UL');
    for (i = 0; i < a_ul.length; ++i)
    {
     	var a_li = a_ul[i].getElementsByTagName('LI');
      for (j = 0; j < a_li.length; ++j)
      {
        a_li[j].onmouseover = function()
        {
          this.className += ' over';
        }
        a_li[j].onmouseout = function()
        {
          this.className = this.className.replace(' over', '');
        }
      }
    }
  }
}
window.onload = ieHoverFix;
