var ie = /MSIE/.test(navigator.userAgent);

function hover2(obj) {
  if (ie) {
    UL2 = obj.getElementsByTagName('ul');
    if (UL2.length > 0) {
      sousMenu2 = UL2[0].style;
      sousMenu2.display = 'block';
    }
  }
}

function out2(obj) {
  if (ie) {
    UL2 = obj.getElementsByTagName('ul');
    if(UL2.length > 0) {
      sousMenu2 = UL2[0].style;
      sousMenu2.display = 'none';
    }
  }
}

function setHover() {
  if (ie) {
	LI2 = document.getElementById('menu2').getElementsByTagName('li');
	for(i=0; i < LI2.length; i++) {
		LI2[i].onmouseover = function() { hover2(this) };
		LI2[i].onmouseout = function() { out2(this) };
	}
  }
}

window.onload = function() { setHover() };