//menu mouse over script
//Jesse Lamb 29/04/07

var orgColor = "";
var orgElmnt = null;
function mOver(id, color){


	elmnt = document.getElementById(id);
	//save the old color
	orgColor = elmnt.style.color;
	//store the element so we can reset it
	orgElmnt = elmnt;

	//change its color
	elmnt.style.color = color;

}
function mOut(){

	//reset the color
	orgElmnt.style.color = orgColor;

}