//Menueffects:
function mOver(cell) {
  cell.style.cursor = "hand";
  cell.style.backgroundColor = "#5555F0";
}
function mOut(cell) {
  cell.style.cursor = "default";
  cell.style.backgroundColor = "transparent";
}

function mClick(url) {
  document.location = url;
}

