function $(id) { return document.getElementById(id); }

window.onload = function() {
  setInterval(function() {
    var hashVal = window.location.hash.substr(1);
    document.body.style.backgroundColor = hashVal;
  }, 1000);
  $("speedUp").onclick = function() { parent.window.location.hash = "speedUp"; }
  $("slowDown").onclick = function() { parent.window.location.hash = "slowDown"; }
}
