
quotes = new Array(20);
authors = new Array(20);

quotes[0] = "david,the two gloomis rods have just been delivered.Really pleased.Thanks for your help.";
authors[0] = "mike purnell revesby england";

quotes[1] = "Ok quick note from Costa Rica. A 200lb marlin yesterday and missed a shot at a 500 lb today but we are landing as many as 10 sails a day on a fly with Gloomis 15 wt. Dan Ross";
authors[1] = "Dean Smith";

quotes[2] = "hello david I got my rods one week ago and they are fanatastic!!!. I am excited about getting my other order. I assuming the other order is on the way. Thanks for your answer.";
authors[2] = "Regards Miguel";

quotes[3] = "Once again, your site has exceeded my expectations. Thank you for your prompt response!  Couldn't find what I was looking for anywhere!";
authors[3] = "Robert Kemp, New Jersey";

quotes[4] = "Excellent service, the product arrived the following day! Many thanks from me and my team!";
authors[4] = "Joe Chamberlain, Cincinatti";

quotes[5] = "Very happy with service and equipment purchased. Great website, easy to navigate. Will be telling my friends!";
authors[5] = "Laura Harding, Seattle";

quotes[6] = "David, I have received my Rod and Reel this afternoon. HIGHLY DELIGHTED WITHE THE GOODS. ";
authors[6] = "Barry Wood.";

quotes[7] = "They got my order to me in a prompt fashion I was really satisfied and I will shop with them often I like the rod. Experience exceeded expectation. Great email contact and very prompt. Would shop again.";
authors[7] = "Roy Moses";

quotes[8] = " I have had two fantastic experiences with this company. The service was outstanding and they went the whole distance to make sure I was taken care of. Keep up the great work folks!";
authors[8] = "Steven Capa";

quotes[9] = "The people I worked with, did an excellent job and had the whole package completed, somewhat last minute.! You did a wonderful job!";
authors[9] = "Gus Taylor, North Carolina";


quotes[10] = "Hi Teresa, Just wanted to let you know that I have received my rod, I have been away for a couple of weeks. It is in good condition and I am very happy with it. Thanks.";
quotes[10] = "John Schuts Winemaking Tasmania" ;

quotes[11] =  "Hi Teresa, Griffin supplied the broken part  for the vice, included a premium bobbin, thank you.";
authors[11] = "Leeds UK.";


quotes[12] = "I have shown a few people your Golden Pheasent crests, & Indian capes--The quality of the dyeing is tremendous, & we are very in to \"hues\" in Ireland, & mixing colours & dyeing. The shine off the hackles is also remarkable, similar to old capes we have. Well done to your company for sourcing this level of quality, & service";
authors[12] = " Mike. Chicago";

 
quotes[13] = "Hi David. I only want to tell you that I am greatly pleased with the rod and the service, and will recommend you to my fishing buddies.  Ps.Have already tried the rod."; 
authors[13] = "With kind greeting Bengt Larsson,  Hagfors Sweden";

 
 
quotes[14] = "Hi David , rod has just arrived thanks and no duty to pay, so it was definetly worth importing.";
authors[14] = "Thanks very much Cheers Vern";

 
quotes[15] = "Teresa & David Many thanks to you and all of your team, The rod arrived today great service very pleased with the rod and hope we can do business again soon. Thanks again. Best Wishes David Joynes";
authors[15] = "Thanks Sébastien Granget. Fribourg, CH";	
  
 
quotes[16] = " Hi, guys  I received the GLX Classic today! The sending was fast, and the rod is superb.I delighted to test it during my holidays in slovénia! Thanks Greetings Sébastien";
authors[16] = "Thanks Greetings Sébastien";
	
	
quotes[17] = "I would just like to congratulate you to the superb service given on my recent order of a Loomis GLX Distance rod. Communication was excellent and the delivery was extremely quick to the UK. ";
authors[17] = "Thank you. Chris Rant, UK";
 

quotes[18] = " I have received the spinning rod and wanted to let you know it is great.  I am looking forward to using it up at God's Lake, Canada, we'll be at Elk Island Lodge.  Beautiful fishing waters!   Wanted to send you positive feedback. Very satisfied ";
authors[18] =  "Thanks again. Julie";


quotes[19] = " I just thought I would send you a quick email to say thank you so much for your professional and impressive service for the Loomis FR1207 rod that I purchased from you last November. It is absolutely beautiful and my partner who I bought it for as a Christmas gift cannot wait to try it out!";
authors[19] = "Jane Hawksworth, UK";
 
 
quotes[20] = "Khris  Just wanted to say thanks for your assistance in sorting out the delivery of my Waterworks fly reel It arrived (finally) yesterday and although its delivery has been somewhat protracted it was sorted out quickly when you guys were made aware of the problem.Any way it is here now just in time for a session with my Father tomorrow, just the job.";
authors[ 20]= "Thank you very much.  Best regards,Randy";



//calculate a random index
index = Math.floor(Math.random() * quotes.length);


//display the quotation
document.write("<DL>\n");
document.write("<DT>" + "\"" + quotes[index] + "\"\n");
document.write("<DD>" + "-- " + authors[index] + "\n");
document.write("</DL>\n");


