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

function getaQuote()
{
  if (document.getElementById && document.createTextNode) 
  {
	  
     var quote=new Array()
       quote[0]="\"Finally somebody made something to make my life easier and it is the 2HANDEE tool\"  Gerald\"G Man\" Swindle";
       quote[1]="\"2HANDEE for you to Handle - The 2HANDEE Angler's Utility tool is a great investment.\"  FishRapNews.com";
       quote[2]="\"The 2-Handee Tool did everything it said it could do extremely well and certainly does earn its name.\"  George Cawthorn-Bassin' USA Prostaff Team";   
       quote[3]="\"2HANDEE angler's utility tool - All the right Gear at your finger tips\"  Tackle Tour";
       quote[4]="\"This product is awesome and has several uses during a day of fishing. You must get one!\"  Skeeter Jim-BassOnLine.com";
       quote[5]="\"Now all of my other junk tools are in a tool box in my boat and I have my 2HANDEE tool on a clip on my belt.\"  Capt. Jim Burks Bassin Adventures";
       quote[6]="\"Good news, got my new 2HANDEE tools and just replaced my Accurate pliers with your pliers. They cut braid like a laser, love them!!!\"  Manny Perez Pro Redfish Angler";
       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();


