function changeBackgroundImage(id) {
	thisCell = document.getElementById(id);
	thisCell.className = thisCell.className + "_hover";
}

function restoreBackgroundImage(id) {
	thisCell = document.getElementById(id);
	thisCell.className = thisCell.className.substring(0, thisCell.className.length-6);
	//alert(thisCell.className);
}