function navOver(elName) {
	var overColor = '#4B7000';
	if(document.all){ document.all[elName].style.backgroundColor = overColor; }
	if(document.getElementById) { document.getElementById(elName).style.backgroundColor = overColor; }
	}

function navOut(elName) {
	var outColor = '#96B612';
	if(document.all){ document.all[elName].style.backgroundColor = outColor; }
	if(document.getElementById) { document.getElementById(elName).style.backgroundColor = outColor; }
	}