// JavaScript Document

var Quotation=new Array()

Quotation[0] = "\"I am glad to see that there are still companies that understand customer service.\"<br> - Kerri T.  Charleston, SC";
Quotation[1] = "\"I can&rsquo;t believe how fast you fixed my computer problems!\"<br> - Angela F.  San Francisco, CA";

var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();





