function get_random(maxNum)
{
 var ranNum= Math.floor(Math.random()*(9-0));
 return ranNum;
}

function getaQuote()
{
  if (document.getElementById && document.createTextNode) 
  {
	  
     var quote=new Array()
       quote[0]="\"Catch The Dream!\" - Lee Bailey Jr -";
       quote[1]="\"Achieving the \"zone\" in sports allows one to perform at an extraordinary level.\" - Rick Clunn -";
       quote[2]="\"Son It\'s a Big One\" - Bass Fishin Legend - Roland Martin -";   
       quote[3]="\"When BASS says Elite, they mean elite! These guys out here can flat catch fish.\" - Pete Ponds -";
       quote[4]="\"After I boated that big one, I had to sit down for 10 minutes. I promised myself I wasn't going to scream and holler like an idiot, but I did.\" - Preston Clark -";
       quote[5]="\"My life really boils down to just one thing... giving my all for God in every area of my life.\" - Alton Jones - ";
       quote[6]="\"One of the goals that I've set for myself is to be the guy who puts the first rod and reel into the hands of a million kids.\"  - Gene Ellison -";
       quote[7]="\"The best time to go fishing is when you can get away.\" - R. Traver -";
       quote[8]="\"I\'m very passionate about doing something that brings the sport together\" - Terry Brown -";
       quote[9]="\"Confidence is the BEST lure in your tackle box.\"     - Gerald Swindle -";
    
	 var whichQuote=get_random(quote.length);
	 
	var thequote = document.getElementById("my_quote");
    thequote.innerHTML = quote[whichQuote];
  }
} 

getaQuote();

