
startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("nav");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
					document.getElementById("kep").src="images/menu_03b.gif";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
					document.getElementById("kep").src="images/menu_03.gif";
				}
			}
		}



		navRoot = document.getElementById("subnav");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.childNodes[0].style.width=195;

				node.onmouseover=function() {
					this.className+=" over";
					document.getElementById("kep").src="images/menu_03b.gif";

				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
					document.getElementById("kep").src="images/menu_03.gif";
				}
			}
		}

	}



	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("nav2");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
					document.getElementById("kep2").src="images/menu_07b.gif";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
					document.getElementById("kep2").src="images/menu_07.gif";
				}
			}
		}



		navRoot = document.getElementById("subnav2");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.childNodes[0].style.width=195;

				node.onmouseover=function() {
					this.className+=" over";
					document.getElementById("kep2").src="images/menu_07b.gif";

				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
					document.getElementById("kep2").src="images/menu_07.gif";
				}
			}
		}

	}




}
window.onload=startList;

