function get_random()
{
    var ranNum= Math.floor(Math.random()*3);
    return ranNum;
}

function getaTest()
{
   var whichQuote=get_random();

    var test=new Array(3)
     test[0]="Kim,<br /><br />Loved the truffles.  Great job.  You are a very talented person.  I am always in awe of what you can create!<br /><br />Shannon";
     test[1]="Dear Kim,<br /><br />Thank you for the gret catering service for my clients.  Everyone loved the delicious meal and the attention to details.  What a joy it was to have my clients served and treated so graciously.<br /><br />Kim, you helped make my event a great success.  I really appreciate the outstanding quality of food you prepare and your commitment to excellence.<br /><br />Thank you,<br />Linda A. Lovett<br />Financial Advisor<br />Edward Jones";
     test[2]="...The food was appealing, absolutely delicious with generous portions.  Kimberly was professional, organized, delivery and set up were as scheduled, her communication was exceptional, nice to talk to and work with and her prices are very reasonable for the quantity and amount of food.<br /><br />Regards,<br />Peggy L.";   
       
   //alert(test[whichQuote]);
   document.getElementById("testimonial").innerHTML = test[whichQuote];
  }
