var Quotation=new Array() // do not change this!

Quotation[0] = "&ldquo;Io non ho pensato. Ho sperimentato.&rdquo; <span class='qfont'>Wilhelm Roentgen</span>";
Quotation[1] = "&ldquo;Quando si legge troppo in fretta o troppo lentamente non si capisce nulla&rdquo; <span class='qfont'>Blaise Pascal</span>";
Quotation[2] = "&ldquo;Sorridi anche se il tuo sorriso è triste, perché più triste di un sorriso triste c'è la tristezza di non saper sorridere.&rdquo; <span class='qfont'>Jim Morrison</span>";


// ======================================
// Do not change anything below this line
// ======================================
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();
