// these functions allow IE to process rollovers on the <li> tags 		
function MakeLiHover(){
	//alert('MakeLiHover called with id='+id);
	if(document.all && document.getElementsByTagName){
		var LIs = menu.getElementsByTagName( "LI" );				
		for(var i = 0; i < LIs.length; i++){
			AddRollover( LIs[i] );				
		}	
	}
}		
function AddRollover(node){
	node.onmouseover = function(){
		this.className += " iehover";
	}
	node.onmouseout = function(){
		this.className = this.className.replace( " iehover", "" );
	}
}
window.onload=MakeLiHover;

