// function show(id) {
// 	e = document.getElementById(id);
// 	e.style.display = 'block';
// }
// function hide(id) {
// 	e = document.getElementById(id);
// 	e.style.display = 'none';
// }
// function hideAllN2 () {
// 	var items = new Array('listA','listB','listC','listD');
// 	for (var i in items) {
// 		hide(items[i])
// 	}
// }
// function showN2(id) {
// 	hideAllN2()
// 	show(id)
// }
// function hideN2(id) {
// 	hide(id)
// }
// 
// function addLoadEvent(func) {
//   var oldonload = window.onload;
//   if (typeof window.onload != 'function') {
//     window.onload = func;
//   } else {
//     window.onload = function() {
//       if (oldonload) {
//         oldonload();
//       }
//       func();
//     }
//   }
// }

startList = function() {
	if (document.getElementById) {
		var menu = document.getElementById("menu");
		var navRoot = document.getElementById("list0");
		for (var i=0; i<navRoot.childNodes.length; i++) {
			var node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					if (document.all) this.className+=" over";
					menu.className+=" over";
				}
				node.onmouseout=function() {
					if (document.all) this.className=this.className.replace(" over", "");
					menu.className=this.className.replace(" over", "");
				}
			}
		}
		document.getElementById('logo').onmouseover=function() {
			menu.className=this.className.replace(" over", "");
		}
		document.getElementById('middle').onmouseover=function() {
			menu.className=this.className.replace(" over", "");
		}
	}
}
// addLoadEvent(startList);
