function changeCell(cell) {
	cell.style.background="#FFF7C6";
	cell.style.color="#CC0000";
	cell.fontStyle = "bold";
	cell.onmouseout = function() {
		cell.style.background="#FFFFFF";
		cell.style.color="#000000";
		cell.fontStyle = "nomral";
	}
}
