// JavaScript Document

function navEvent(id){
	obj = document.getElementById(id);
	for(c=0; c < obj.childNodes.length; c++){
		objNode = obj.childNodes[c];
		if (objNode.nodeName == "LI"){
			objNode.onmouseover = function(){this.className="over";}
			objNode.onmouseout = function(){this.className="";}
		}
	}
}

function topNav(id){
	objNav = document.getElementById(id);
	objNav.onmouseover = function(){this.src = "images/menu/" + id + "_over.jpg";}
	objNav.onmouseout = function(){this.src = "images/menu/" + id + ".jpg";}
}


window.onload = function(){topNav("about"); topNav("menu"); topNav("mood"); topNav("location"); topNav("contact");}

