function get_random()
{
    var ranNum= Math.floor(Math.random()*8);
    return ranNum;
}


function getaQuote()
{
  var whichQuote=get_random();

  var quote=new Array(8);

     quote[0]="Coming together is a beginning. Keeping together is progress. Working together is success.&nbsp;&nbsp;~&nbsp;&nbsp;<font class='CoachName'>Henry&nbsp;Ford</font>";
     quote[1]="Individual commitment to a group effort -- that is what makes a team work a company work, a society work, a civilization work.&nbsp;&nbsp;~&nbsp;&nbsp;<font class='CoachName'>Vince&nbsp;Lombardi</font>";   
     quote[2]="Football is like life, it requires perseverance, self-denial, hard work sacrifice, dedication and respect for authority.&nbsp;&nbsp;~&nbsp;&nbsp;<font class='CoachName'>Vince&nbsp;Lombardi</font>";
     quote[3]="Don't be a spectator, don't let life pass you by.&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]="To achieve success, whatever the job we have, we must pay a price.&nbsp;&nbsp;~&nbsp;&nbsp;<font class='CoachName'>Vince&nbsp;Lombardi</font>";   
     quote[6]="Leadership is based on a spiritual quality; the power to inspire, the power to inspire others to follow.&nbsp;&nbsp;~&nbsp;&nbsp;<font class='CoachName'>Vince&nbsp;Lombardi</font>";   
     quote[7]="People who work together will win, whether it be against complex football defenses, or the problems of modern society.&nbsp;&nbsp;~&nbsp;&nbsp;<font class='CoachName'>Vince&nbsp;Lombardi</font>";   

  document.getElementById("quote").innerHTML = quote[whichQuote];
}





