function get_random()
{
    var ranNum= Math.floor(Math.random()*10);
    return ranNum;
}


function getaQuote()
{
  var whichQuote=get_random();

  var quote=new Array(10);

     quote[0]="I won’t accept anything less than the best a player’s capable of doing, and he has the right to expect the best that I can do for him and the team.&nbsp;&nbsp;~&nbsp;&nbsp;<font class='CoachName'>Lou&nbsp;Holtz</font>";
     quote[1]="A good coach will make his players see what they can be rather than what they are.&nbsp;&nbsp;~&nbsp;&nbsp;<font class='CoachName'>Ara&nbsp;Parashegian</font>";
     quote[2]="Coaches have to watch for what they don’t want to see and listen to what they don’t want to hear.&nbsp;&nbsp;~&nbsp;&nbsp;<font class='CoachName'>John&nbsp;Madden</font>";   
     quote[3]="Gentlemen, it is better to have died as a small boy than to fumble this football.&nbsp;&nbsp;~&nbsp;&nbsp;<font class='CoachName'>John&nbsp;Heisman</font>";
     quote[4]="They call it coaching but it is teaching. You do not just tell them…you show them the reasons.&nbsp;&nbsp;~&nbsp;&nbsp;<font class='CoachName'>Vince&nbsp;Lombardi</font>";
     quote[5]="The fewer rules a coach has, the fewer there are for a player to break.&nbsp;&nbsp;~&nbsp;&nbsp;<font class='CoachName'>John&nbsp;Madden</font>";   
     quote[6]="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>";   
     quote[7]="When you find your opponent's weak spot, hammer it.&nbsp;&nbsp;~&nbsp;&nbsp;<font class='CoachName'>John&nbsp;Heisman</font>";   
     quote[8]="Gentleman, this is a football.&nbsp;&nbsp;~&nbsp;&nbsp;<font class='CoachName'>Vince&nbsp;Lombardi</font>";
     quote[9]="It doesn't take talent to hustle.&nbsp;&nbsp;~&nbsp;&nbsp;<font class='CoachName'>H.&nbsp;Jackson&nbsp;Brown</font>";

  document.getElementById("quote").innerHTML = quote[whichQuote];
}





