function get_random()
{
    var ranNum= Math.floor(Math.random()*13);
    return ranNum;
}


function getaQuote()
{
  var whichQuote=get_random();

  var quote=new Array(13);

     quote[0]="If me and King Kong went into an alley, only one of us would come out. And it wouldn't be the monkey.&nbsp;&nbsp;~&nbsp;&nbsp;<font class='CoachName'>Lyle&nbsp;(Three&nbsp;Mile&nbsp;Lyle)&nbsp;Alzado</font>&nbsp;&nbsp;&nbsp;<a href='http://www.pro-football-reference.com/players/AlzaLy00.htm' target=_blank><font class='quoteLink'>Player&nbsp;Stats</font></a>";
     quote[1]="I've been big ever since I was little.&nbsp;&nbsp;~&nbsp;&nbsp;<font class='CoachName'>William&nbsp;(The&nbsp;Refrigerator)&nbsp;Perry</font>&nbsp;&nbsp;&nbsp;<a href='http://www.fridge72.com/' target=_blank><font class='quoteLink'>Player&nbsp;Stats</font></a>";
     quote[2]="I'm the best defensive end around.  I'd hate to have to play against me.&nbsp;&nbsp;~&nbsp;&nbsp;<font class='CoachName'>David&nbsp;(Deacon)&nbsp;Jones</font>&nbsp;&nbsp;&nbsp;<a href='http://www.pro-football-reference.com/players/JoneDe00.htm' target=_blank><font class='quoteLink'>Player&nbsp;Stats</font></a>";
     quote[3]="You run as fast as you can, and I'll throw it as far as I can.&nbsp;&nbsp;~&nbsp;&nbsp;<font class='CoachName'>Jeff&nbsp;Kemp</font>&nbsp;&nbsp;&nbsp;<a href='http://www.pro-football-reference.com/players/KempJe00.htm' target=_blank><font class='quoteLink'>Player&nbsp;Stats</font></a>";
     quote[4]="I want to rush for 1,000 or 1,500 yards, whichever comes first.&nbsp;&nbsp;~&nbsp;&nbsp;<font class='CoachName'>George&nbsp;Rogers</font>&nbsp;&nbsp;&nbsp;<a href='http://www.pro-football-reference.com/players/RogeGe00.htm' target=_blank><font class='quoteLink'>Player&nbsp;Stats</font></a>";
     quote[5]="I just wrap my arms around the whole backfield and peel them one by one until I get to the ball carrier. Him I keep.&nbsp;&nbsp;~&nbsp;&nbsp;<font class='CoachName'>Gene&nbsp;(Big&nbsp;Daddy)&nbsp;Lipscomb</font>&nbsp;&nbsp;&nbsp;<a href='http://www.pro-football-reference.com/players/LipsGe00.htm' target=_blank><font class='quoteLink'>Player&nbsp;Stats</font></a>";
     quote[6]="You're never guaranteed about next year. People ask what you think of next season, you have to seize the opportunities when they're in front of you.&nbsp;&nbsp;~&nbsp;&nbsp;<font class='CoachName'>Brett&nbsp;Favre</font>&nbsp;&nbsp;&nbsp;<a href='http://www.pro-football-reference.com/players/FavrBr00.htm' target=_blank><font class='quoteLink'>Player&nbsp;Stats</font></a>";
     quote[7]="I feel like I'm the best, but you're not going to get me to say that.&nbsp;&nbsp;~&nbsp;&nbsp;<font class='CoachName'>Jerry&nbsp;(World)&nbsp;Rice</font>&nbsp;&nbsp;&nbsp;<a href='http://www.pro-football-reference.com/players/RiceJe00.htm' target=_blank><font class='quoteLink'>Player&nbsp;Stats</font></a>";
     quote[8]="The only one who can beat me is me.&nbsp;&nbsp;~&nbsp;&nbsp;<font class='CoachName'>Michael&nbsp;(The&nbsp;Duck)&nbsp;Johnson</font>&nbsp;&nbsp;&nbsp;<a href='http://en.wikipedia.org/wiki/Michael_Johnson_(athlete)' target=_blank><font class='quoteLink'>Athelete&nbsp;Info</font></a>";
     quote[9]="I learned that if you want to make it bad enough, no matter how bad it is, you can make it.&nbsp;&nbsp;~&nbsp;&nbsp;<font class='CoachName'>Gale&nbsp;(The&nbsp;Kansas&nbsp;Comet)&nbsp;Sayers</font>&nbsp;&nbsp;&nbsp;<a href='http://www.pro-football-reference.com/players/SayeGa00.htm' target=_blank><font class='quoteLink'>Player&nbsp;Stats</font></a>";
     quote[10]="It's not the size of the dog in the fight, but the size of the fight in the dog.&nbsp;&nbsp;~&nbsp;&nbsp;<font class='CoachName'>Archie&nbsp;Griffin</font>&nbsp;&nbsp;&nbsp;<a href='http://www.pro-football-reference.com/players/GrifAr00.htm' target=_blank><font class='quoteLink'>Player&nbsp;Stats</font></a>";
     quote[11]="Pain is only temporary, no matter how long it lasts.&nbsp;&nbsp;~&nbsp;&nbsp;<font class='CoachName'>Ray&nbsp;(Ray&nbsp;Ray)&nbsp;Lewis</font>&nbsp;&nbsp;&nbsp;<a href='http://www.pro-football-reference.com/players/LewiRa00.htm' target=_blank><font class='quoteLink'>Player&nbsp;Stats</font></a>";
     quote[12]="Football isnt a contact sport, it's a collision sport.  Dancing is a contact sport.&nbsp;&nbsp;~&nbsp;&nbsp;<font class='CoachName'>Dick&nbsp;(Duffy)&nbsp;Daugherty</font>&nbsp;&nbsp;&nbsp;<a href='http://www.pro-football-reference.com/players/DaugDi00.htm' target=_blank><font class='quoteLink'>Player&nbsp;Stats</font></a>";

  document.getElementById("quote").innerHTML = quote[whichQuote];
}





