hellefarbe="#FFFF00";
dunklefarbe="#eb8744";

function hell(quad){
  document.getElementById("quad"+quad).style.backgroundColor=hellefarbe;
  document.getElementById("text"+quad).style.color=dunklefarbe;
  }
function dunkel(quad){
  document.getElementById("quad"+quad).style.backgroundColor=dunklefarbe;
  document.getElementById("text"+quad).style.color="#000000";
  }
