//store the quotations in arrays
quotes = new Array(8);
authors = new Array(8);
quotes[0] = "A great price on a beautiful paper, and fast delivery. I could not ask for more.";
authors[0] = "Charlotte, NC";
quotes[1] = "No issues, quick delivery, great price - Why can't all stores be like this!?.";
authors[1] = "Virginia Beach, VA";
quotes[2] = "I've now ordered from this company for the past 3 years and have had prompt shipping and a quality product for a small price.";
authors[2] = "Madison, WI";
quotes[3] = "Good transaction all around, great price and fast delivery.";
authors[3] = "New York, NY";
quotes[4] = "A great, unique and useful gift (gift wrap kit). The packaging and appeal were great. All recipients of my gift have been extremely pleased.";
authors[4] = "Narragansette, RI ";
quotes[5] = "I would recommend their company to someone else in a minute. Keep up the good work.";
authors[5] = "Liberal, KS";
quotes[6] = "I received the ribbons in a timely fashion, and the quality of the high-gloss and the regular was wonderful.";
authors[6] = "Murrieta, CA";
quotes[7] = "All I do is place the order with them and they send the gift wrap kits directly to my customers' homes with a message from me. Makes my life pretty simple.";
authors[7] = "Monticello, IN";


//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

