// JavaScript Document
function mOver(cell) {
	cell.style.backgroundColor = '#666666';
	cell.style.color = '#CCCCCC';
}
function mOut(cell) {
	cell.style.backgroundColor = 'transparent';
	cell.style.color = '#666666';
}