var Quotation=new Array()

// texts to be rotated - for index page
Quotation[0] = "\"We implemented this solution over the weekend, and it works great. \" - C. Barret, Accenture";
Quotation[1] = "\"We saved hundreds of hours of data entry time thus far\" - Anne Palmer, Indiana University";
Quotation[2] = "\"iMacros has proven very, very beneficial to my clients.\" - T. Harrington, Excel Consultant";
Quotation[3] = "\"iMacros works great.\" - P. Leary, PeopleSoft, USA";
Quotation[4] = "\"iMacros has been an excellent addition to our development toolbox\" I. Dominioni, United Parcel Service (UPS)";

var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();