
quotes = new Array(10);
authors = new Array(10);

quotes[0] = "I found the sporting store staff very professional and truly friendly.";
authors[0] = "Jesus Delgado,California";

quotes[1] = "The Sporting store has an impeccable follow-through. They always deliver or over-deliver on commitments.";
authors[1] = "Michael Cobb, Draper, Utah";

quotes[2] = "One of the best shops out there never had a problem. Everything has worked out & I'm still a very satisfied & loyal customer with the sportingstore!";
authors[2] = "Chantelle Annett, Montana";

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] = "The Jerseys arrived today! Thanks ever so much for all your help, I am well chuffed with them, and the delivery didn't take as long as I had expected! Again, many thanks, and best of luck for the future!";
authors[6] = "Florence Nitegale, Idaho";

quotes[7] = "I find them to be very professional in their dealings with the U of T...and have never been dissapointed in their service or delivery...and are willing to take that extra step to make sure everything is right with the product and the service.";
authors[7] = "John Fitzsimmons, Texas";

quotes[8] = "The Jersey was a birthday gift to my husband and he was thrilled. When we got to the arena he strutted proudly. Thank you for helping make my husband's birthday unforgettable. We will definitely use your company in the future.";
authors[8] = "Janet Clainer, Wyoming";

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";


//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");

