//store the quotations in arrays
quotes = new Array(9);
quotes[0] = "Arrived in record speed and in perfect shape. Shop without worry!";
quotes[1] = "Smooth transaction, would buy again. Prompt shipment.";
quotes[2] = "Lightning fast delivery. Thanks.";
quotes[3] = "Professional, courteous, and stand behind products sold. Will buy again!";
quotes[4] = "Product was as advertised. Everything went quickly and smoothly.";
quotes[5] = "Quick, professional service. Nice item. Excellent packing. Highly recommend.";
quotes[6] = "Fast shipping, nice to deal with. Looking forward to future business!";
quotes[7] = "Fast shipping, good transaction."
quotes[8] = "Fast shipping, excellent customer care, great communication. A+"
quotes[9] = "WOW! What a deal. Great seller, super quick shipping."

//calculate a random index
index = Math.floor(Math.random() * quotes.length);

//display the quotation
document.write('<P class="right_item">' + '"' + quotes[index] + '"');
//done