var orgColor = "";
var chgColor = "#FFCC77";

function mouseOverMe(obj) {
	orgColor = obj.style.backgroundColor;
	obj.style.backgroundColor = chgColor;
}

function mouseOutMe(obj) {
	obj.style.backgroundColor = orgColor;
}
