startList = function() {
	var	levelAmenus=6;
	if (document.all&&document.getElementById) {
		//for(k=1;k<levelAmenus+1;k++){
			var mm = document.getElementById('mainmenu').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", "");
				}
			}
		//}
	}
}
startList2 = function() {
	var	levelAmenus=6;
	if (document.all&&document.getElementById) {
		//for(k=1;k<levelAmenus+1;k++){
			var mm = document.getElementById('productsmenu').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&&document.getElementById('mainmenu')) window.attachEvent("onload", startList);
if(window.attachEvent&&document.getElementById('productsmenu')) window.attachEvent("onload", startList2);
try {
  document.execCommand('BackgroundImageCache', false, true);
} catch(e) {}
