var Quotation=new Array()
// Do not change this.

Quotation[0] = "N/A";




var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();