// JavaScript Document

<!--
function overCell(cell) {
  changeCellColor(cell, "#395286");
}
function outCell(cell) {
  changeCellColor(cell, "#4867A7");
}
function changeCellColor(cell, color) {
  cell.style.backgroundColor = color;
}
//-->