// JavaScript Document

// startList = function() {
// var	levelAmenus=6;
// if (document.all&&document.getElementById) {
// 	 for(k=1;k<levelAmenus+1;k++){
// navRoot = document.getElementById("nav"+k);
// for (i=0; i<navRoot.childNodes.length; i++) {
// node = navRoot.childNodes[i];
// if (node.nodeName=="LI") {
// node.onmouseover=function() {
// this.className+=" over";
//   }
//   node.onmouseout=function() {
//   this.className=this.className.replace
//   (" over", "");
//    }
//    }
//   }
//  }
// }}
startList = function() {
	var	levelAmenus=6;
	if (document.all&&document.getElementById) {
		for(k=1;k<levelAmenus;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) {}
