function get_random()
{
    var ranNum= Math.floor(Math.random()*19);
    return ranNum;
}


function getaQuote()
{
  var whichQuote=get_random();

  var quote=new Array(19);

     quote[0]="Winning is only half of it. Having fun is the other half.&nbsp;&nbsp;~&nbsp;&nbsp;<font class='CoachName'>Bum&nbsp;Phillips</font>";
     quote[1]="We didn't lose the game; we just ran out of time.&nbsp;&nbsp;~&nbsp;&nbsp;<font class='CoachName'>Vince&nbsp;Lombardi</font>";   
     quote[2]="Sure, luck means a lot in football. Not having a good quarterback is bad luck.&nbsp;&nbsp;~&nbsp;&nbsp;<font class='CoachName'>Don&nbsp;Shula</font>";
     quote[3]="You're never as good as everyone tells you when you win, and you're never as bad as they say when you lose.&nbsp;&nbsp;~&nbsp;&nbsp;<font class='CoachName'>Lou&nbsp;Holtz</font>";
     quote[4]="Everyone wants to win, but not everyone is willing to prepare to win.&nbsp;&nbsp;~&nbsp;&nbsp;<font class='CoachName'>Bobby&nbsp;Knight</font>";
     quote[5]="You need to play with supreme confidence, or else you'll lose again, and then losing becomes a habit.&nbsp;&nbsp;~&nbsp;&nbsp;<font class='CoachName'>Joe&nbsp;Paterno</font>";   
     quote[6]="Most games are lost, not won.&nbsp;&nbsp;~&nbsp;&nbsp;<font class='CoachName'>Casey&nbsp;Stengel</font>";   
     quote[7]="If it doesn't matter who wins or loses, then why do they keep score?&nbsp;&nbsp;~&nbsp;&nbsp;<font class='CoachName'>Vince&nbsp;Lombardi</font>";   
     quote[8]="The only place you can win a football game is on the field, the only place you can lose it is in your hearts.&nbsp;&nbsp;~&nbsp;&nbsp;<font class='CoachName'>Darrell&nbsp;Royal</font>";   
     quote[9]="Victory or defeat is not determined at the moment of crisis, but rather in the long and unspectacular period of preparation.&nbsp;&nbsp;~&nbsp;&nbsp;<font class='CoachName'>Vince&nbsp;Lombardi</font>";   
     quote[10]="Football isn't necessarily won by the best players. It's won by the team with the best attitude.&nbsp;&nbsp;~&nbsp;&nbsp;<font class='CoachName'>George&nbsp;Allen</font>";   
     quote[11]="You never win a game unless you beat the guy in front of you. The score on the board doesn't mean a thing. That's for the fans. You've got to win the war with the man in front of you. You've got to get your man.&nbsp;&nbsp;~&nbsp;&nbsp;<font class='CoachName'>Vince&nbsp;Lombardi</font>";   
     quote[12]="In great attempts, it is glorious even to fail.&nbsp;&nbsp;~&nbsp;&nbsp;<font class='CoachName'>Vince&nbsp;Lombardi</font>";   
     quote[13]="Winning is not everything--but making effort to win is.&nbsp;&nbsp;~&nbsp;&nbsp;<font class='CoachName'>Vince&nbsp;Lombardi</font>";   
     quote[14]="(on Superbowl III) I've news for you.  We're gonna win the game.  I guarantee it.&nbsp;&nbsp;~&nbsp;&nbsp;<font class='CoachName'>Broadway&nbsp;Joe&nbsp;Namoth</font>";   
     quote[15]="Before you can win, you have to believe you are worthy.&nbsp;&nbsp;~&nbsp;&nbsp;<font class='CoachName'>Iron&nbsp;Mike&nbsp;Ditka</font>";   
     quote[16]="You're never a loser until you quit trying.&nbsp;&nbsp;~&nbsp;&nbsp;<font class='CoachName'>Iron&nbsp;Mike&nbsp;Ditka</font>";   
     quote[17]="Success isn't permanent and failure isn't fatal.&nbsp;&nbsp;~&nbsp;&nbsp;<font class='CoachName'>Iron&nbsp;Mike&nbsp;Ditka</font>";   
     quote[18]="The ones who want to achieve and win championships motivate themselves.&nbsp;&nbsp;~&nbsp;&nbsp;<font class='CoachName'>Iron&nbsp;Mike&nbsp;Ditka</font>";   

  document.getElementById("quote").innerHTML = quote[whichQuote];
}





