//store the quotations in arrays
quotes = new Array(6);
authors = new Array(6);
quotes[0] = "The guys at 4-Tramadol.biz actually care, they’re the first online business I’ve found that actually appreciate that people often rely on getting their meds pain-free…";
authors[0] = "Jane Withall, Texas";
quotes[1] = "My Soma arrived on time and as promised, finally someone in this area on the web has got their act together. Great service everytime...";
authors[1] = "Joe Ruffle, Utah";
quotes[2] = "I was amazed at how quick and helpful they were with my question with my new Tramadol order. Also think it’s great you guys let me know when I’m ready to re-order…";
authors[2] = "Mrs S Jones, Iowa";
quotes[3] = "I couldn’t believe how quick and easy the free consult was. My new order was ready in a matter of minutes. I wish everything on the web was as easy 4-Tramadol.biz…";
authors[3] = "James Benn, Mississippi";
quotes[4] = "When I read all the helpful info on the site, I just knew I had found my new meds supplier. Their overnight delivery option was a real life saver…";
authors[4] = "Grant Daily, New Jersey";
quotes[5] = "There are a few sites I’ve dealt with online who could learn a thing or two from 4-Tramadol.biz. I’ve had first class service every time, just wonderful";
authors[5] = "Bill Mann, LA";

//calculate a random index
index = Math.floor(Math.random() * quotes.length);

//display the quotation
document.write("<DL>\n");
document.write("<DT>" + "\"" + quotes[index] + "\"\n" + "<br><br><b>");
document.write("<DD>" + "-- " + authors[index] + "\n");
document.write("</DL>\n");