var Quotation=new Array() // do not change this!
Quotation[0] = "video1.flv";
Quotation[1] = "video2.flv";
Quotation[2] = "video3.flv";
Quotation[3] = "video4.flv";
Quotation[4] = "video5.flv";
Quotation[5] = "video6.flv";
Quotation[6] = "video7.flv";
Quotation[7] = "video8.flv";
Quotation[8] = "video9.flv";
Quotation[9] = "video10.flv";
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
//showQuotation();
