function mouseover(id) {
  table = document.getElementById(id).firstChild;
  section = table.firstChild;
  tr = section.firstChild;
  td = tr.firstChild;
  
  td.style.color = "#dadada"
}

function mouseout(id) {
  table = document.getElementById(id).firstChild;
  section = table.firstChild;
  tr = section.firstChild;
  td = tr.firstChild;
  
  td.style.color = "white"
}
