function get_random()
{
    var ranNum= Math.floor(Math.random()*1);
    return ranNum;
}


function getaQuote()
{
  var whichQuote=get_random();

  var quote=new Array(1);

     quote[0]="Don't cuss. Don't argue with the officials. And don't lose the game.&nbsp;&nbsp;~&nbsp;&nbsp;<font class='CoachName'>John&nbsp;Heisman</font>";   

  document.getElementById("quote").innerHTML = quote[whichQuote];
}





