var imgRoot = "images/nav/"

function navOver(thisImg) {
	var idName = thisImg.getAttribute("id")
	if (idName == "" || idName == null) {
		thisImg.src = thisImg.src
	}else{
		var imgName = thisImg.getAttribute("id")+"_over.gif"
		thisImg.src = imgRoot + imgName
	}
}

function navOut(thisImg) {
	var idName = thisImg.getAttribute("id")
	if (idName == "" || idName == null) {
		thisImg.src = thisImg.src
	}else{
		var imgName = thisImg.getAttribute("id")+".gif"
		thisImg.src = imgRoot + imgName
	}
}