var Quotation=new Array()

Quotation[0] = "Time is of the essence! Only a few clicks away.";
Quotation[1] = "It has everything! All the features...you name it, they have it!";
Quotation[2] = "I am already married to InterpreterQuest!";
Quotation[3] = "Using IQ really saves me from hiring more staff.";
Quotation[4] = "Reliable and effective tool!";
Quotation[5] = "Indeed consumer-friendly.";
Quotation[6] = "I am addicted to the interpreter schedule!";
Quotation[7] = "The requests really blew me away. Simple yet robust!";
Quotation[8] = "The price allows me to expand my business. Very reasonable!";
Quotation[9] = "This is unique, something we have not seen before.";


var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();