function changeBackground(lst, color) {
  for (i in lst) {
    document.getElementById(lst[i]).style.backgroundColor = color;
  }
}

function relight(tbl, e, color) {
  lst = tbl[e.target.id];
  for (i in lst) {
    document.getElementById(lst[i]).style.backgroundColor = color;
  }
}
