end conditions


      if(ballTop < 470){
        //still in play - keep the loop going
        timer = setTimeout('start()',50);
      }
      else{
        gameOver();
      }
    }