// JavaScript Document
IE6hover=function (el,haverClass){
	haverClass=haverClass||'hover';
	el.onmouseout=function (){
		this.className=this.className
		.replace(new RegExp('(^|\\s)' + haverClass + '(?=\\s|$)','g'),'')
		.replace(/^\s+|\s+$/,'')
		.replace(/\s+/,' ');
	}
	el.onmouseover=function (){
		el.onmouseout();
		this.className+=' '+haverClass;
	};
};
window.onload = function (){
	var lis=document.getElementsByTagName("LI");
	for (var i=0;i<lis.length;++i ) IE6hover(lis[i])
}
