<!--
//store the quotations in arrays
quotes = new Array(3);
authors = new Array(3);
quotes[0] = "I purchased your products at the Rancho Bernardo Winery Craft Fair, on Mother's Day 2002 and absolutely love them. I am a massage therapist and initially purchased the Plumaria Body Oil for client use - but decided to keep it for myself...";
authors[0] = "L.B., San Diego, CA";
quotes[1] = "Thank you for the Gardenia Body oil. My girlfriend loved it. Your quick service was really appreciated.";
authors[1] = "G.M., New Lenox, Illinois";
quotes[2] = "Definitely worth waiting for!  The rose oil is magnificent!  Thank you for the rose soap too.  It is lovely.";
authors[2] = "K.P., Windsor, California";

//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");

//done
  
//-->
