function get_random()
{
    var ranNum= Math.floor(Math.random()*21);
    return ranNum;
}

var aQuotes =  new Array();
aQuotes[0] = new Object();
aQuotes[0]["source"] = "Bakerstown Feed & Garden Centers";
aQuotes[0]["quote"] = "Fabulous response, and I don’t often use the word FABULOUS!";
aQuotes[1] = new Object();
aQuotes[1]["source"] = "Green Landscape Nursery (Richard Green: 661-255-8838)";
aQuotes[1]["quote"] = "Your New Homeowner Program is FANTASTIC! If any nursery wants to hear why it is essential, please have them call me and I’ll tell them.";
aQuotes[2] = new Object();
aQuotes[2]["source"] = "Bakerview Nursery";
aQuotes[2]["quote"] = "You deserve the awards. The program is excellent and you’re easy to work with.";
aQuotes[3] = new Object();
aQuotes[3]["source"] = "Garland Nursery";
aQuotes[3]["quote"] = "Best response we’ve ever gotten with a coupon!";
aQuotes[4] = new Object();
aQuotes[4]["source"] = "Neighbors Home & Garden Center";
aQuotes[4]["quote"] = "I was amazed at how many NEW CUSTOMERS came in!";
aQuotes[5] = new Object();
aQuotes[5]["source"] = "Weiss Bros. Nursery";
aQuotes[5]["quote"] = "I know I dragged my feet on using this program. Now I could kick myself for not starting sooner. It’s one of the best things we’ve ever done.";
aQuotes[6] = new Object();
aQuotes[6]["source"] = "Martin’s Garden";
aQuotes[6]["quote"] = "We are quite pleased with the RESULTS, and very happy with your services.";
aQuotes[7] = new Object();
aQuotes[7]["source"] = "Buck\'s Country Gardens";
aQuotes[7]["quote"] = "We always get a good response with your program!";
aQuotes[8] = new Object();
aQuotes[8]["source"] = "Carlmont Nursery";
aQuotes[8]["quote"] = "WE\'RE VERY HAPPY WITH THE PROGRAM!";
aQuotes[9] = new Object();
aQuotes[9]["source"] = "Mantua Creek Nursery";
aQuotes[9]["quote"] = "This program worked very well. We had a few <strong>SALES OVER $1,000.00</strong> already!";
aQuotes[10] = new Object();
aQuotes[10]["source"] = "Enchanted Way Nursery";
aQuotes[10]["quote"] = "Your program has brought in a lot of NEW CUSTOMERS, and they are the kind that are COMING BACK AGAIN & AGAIN & AGAIN--I can tell by the checks I receive from them later. I’m very pleased with it.";
aQuotes[11] = new Object();
aQuotes[11]["source"] = "Cold Creek Nurseries";
aQuotes[11]["quote"] = "Great Response!";
aQuotes[12] = new Object();
aQuotes[12]["source"] = "Southern Oregon Nursery";
aQuotes[12]["quote"] = "I love it!";
aQuotes[13] = new Object();
aQuotes[13]["source"] = "Blue Mount Nursery";
aQuotes[13]["quote"] = "Great response! We were thrilled with the whole thing!";
aQuotes[14] = new Object();
aQuotes[14]["source"] = "Stony Bridge Garden Center";
aQuotes[14]["quote"] = "We were pleasantly surprised at the response. As other nursery owners told us, this is a no brainer—you have to do it!";
aQuotes[15] = new Object();
aQuotes[15]["source"] = "Farmington Gardens";
aQuotes[15]["quote"] = "It\'s wonderful! Absolutely the best money we\'ve ever spent on advertising!";
aQuotes[16] = new Object();
aQuotes[16]["source"] = "Peninsula Gardens";
aQuotes[16]["quote"] = "This has been great--a lot of response! We also use a welcome service, but we don’t get nearly the response with it that we are getting with your service.";
aQuotes[17] = new Object();
aQuotes[17]["source"] = "Colonial Gardens";
aQuotes[17]["quote"] = "One of the most effective things we do.";
aQuotes[18] = new Object();
aQuotes[18]["source"] = "Wyntour Gardens";
aQuotes[18]["quote"] = "As in previous years, your New Homeowner program continues to be highly successful for our nurseries.";
aQuotes[19] = new Object();
aQuotes[19]["source"] = "Jim Jenkins Lawn & Garden";
aQuotes[19]["quote"] = "Fantastic response. Best thing I’ve ever done!";

function getaQuote(){
var whichQuote=get_random();
document.write(aQuotes[whichQuote].quote + '<br>' + '<i>--' + aQuotes[whichQuote].source + '</i>');
}
