startList = function() {
	var	levelAmenus=1;
	if (document.all&&document.getElementById) {
		for(k=1;k<levelAmenus+1;k++){
			var mm = document.getElementById('nav'+k).getElementsByTagName("li");
			for(i=0; i<mm.length;i++){
				mm[i].onmouseover = function(){
					this.className+=" over";
				}
				mm[i].onmouseout=function(){
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}
if(window.attachEvent) window.attachEvent("onload", startList);
try {
  document.execCommand('BackgroundImageCache', false, true);
} catch(e) {}
