// JavaScript Document

var Quotation=new Array(String)
Quotation[0] = "\"I'm very glad I bought my license through LicensePal. I personally felt secure knowing that everything would be smooth and can recommend them to others with confidence.\"<br /><strong>Dustin Cisneros - SemoWeb</strong>";
Quotation[1] = "\"LicensePal has offered me great value without any fuss for quite some time. There is one word for their support - brilliant. I will certainly be recommending them to others!\"<br /><strong>Theo Robertson-Bonds - ImmediateVPS</strong>";
Quotation[2] = "\"After searching for a while, a friend brought LicensePal to my attention. For any issues I had, the support was quick and given with minimal hassle. They are one in a million.\"<br /><strong>Randal Burns - CheetahHost</strong>";
Quotation[3] = "\"I cannot recommend the services of LicensePal enough. My new license was ready within minutes and a great design integration within a couple of days. Truely great service.\"<br /><strong>Andrew Stevens - WebKinect</strong>";

//return a random integer between 0 and 3
var length = Quotation.length;
var whichQuotation = Math.floor(Math.random()*length);
document.write(Quotation[whichQuotation]);
document.write("<br /><br />");
if (whichQuotation == (length - 1)) { document.write(Quotation[0]); }
else { document.write(Quotation[whichQuotation + 1]); }
