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\" Always stay open minded. Patterns and fish movements are dynamic, always changing. My goal is to try and anticipate fish movements and look forward to the developing patterns. .\" - Pete Gluszek -";
       quote[2]="\"When I come to Lake Champlain, I try to find situations where largemouths and smallmouths are either feeding together or are approximate to each other in a small area\" - Pete Gluszek -";   
       quote[3]="\"The Opportunity for Greatness is at Hand\" - Pete Gluszek -";
       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.\" - Mike Iaconelli -";
       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]="\"I love fall fishing because the fish are focused on one thing: EATING.\"  - Pete Gluszek -";
       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();

