var Quotation=new Array()
Quotation[0] = "Great New Fall Programs Beginning in September! Registrations will be available in August.";
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();

