var Quotation=new Array()

// texts to be rotated - for index page
Quotation[0] = "\"Wir haben diese Lösung übers Wochenende implementiert, und es klappt bestens. \" - C. Barret, Accenture";
Quotation[1] = "\"Wir haben bei der Dateneingabe bereits hunderte Stunden gespart\" - Anne Palmer, Indiana University";
Quotation[2] = "\"iMacros hat sich bei meinen Kunden bestens bewährt.\" - T. Harrington, Excel Consultant";
Quotation[3] = "\"iMacros funktioniert grossartig.\" - P. Leary, PeopleSoft, USA";
Quotation[4] = "\"iMacros ist ein exzellente Erweiterung meiner Entwickler-Tools\" 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();