startList = function() {
	if (document.all && document.getElementById) {
		divs = document.getElementsByTagName("li");
		//window.status="items:"+divs.length;
		for (i=0; i<divs.length; i++) {
		//if(divs[i].className.indexOf('navi')!=-1 && divs[i].className.indexOf('Item')!=-1){
				divs[i].onmouseover=function() {
					this.className+=" ieHover";
					//document.title='mouseover '+this.className;
				}
				divs[i].onmouseout=function() {
					this.className=this.className.replace(" ieHover", "");
					//document.title='mouseout '+this.className;
				}
			}
		//}
	}
}
window.onload=startList;
