function startIEMenu()
{
	try{
		d = document.getElementsByTagName('li');
		NBR = d.length;
		for(i=0; i<NBR; i++)
		{
			d[i].onmouseover = function(){
				UL = this.getElementsByTagName('ul');
				if(UL[0]){
					UL[0].style.display = 'block';
				}
			}
		
			d[i].onmouseout = function(){
				UL = this.getElementsByTagName('ul');
				if(UL[0]){
					UL[0].style.display = 'none';
				}
			}
		}
	} catch(e) {
		for(i in e) alert(i)
	}
}

addToStart(startIEMenu);