
IEHover = function() {
	var Labels = document.getElementById("main").getElementsByTagName("li");
	for (var i=0; i<Labels.length; i++) 
	{
		Labels[i].onmouseover=function() 
		{
			this.className+=" IEHover";
		}
		Labels[i].onmouseout=function() 
		{
			this.className=this.className.replace(new RegExp(" IEHover"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", IEHover);

