var Quotation=new Array() // do not change this!

Quotation[0] = "&ldquo;Never doubt that a small group of thoughtful, committed citizens can change the world. Indeed, it is the only thing that ever has.&rdquo; <span class='qfont'>Margaret Mead</span>";
Quotation[1] = "&ldquo;I resolved to stop accumulating and begin the infinitely more serious and difficult task of wise distribution.&rdquo; <span class='qfont'>Andrew Carnegie</span>";
Quotation[2] = "&ldquo;Man is a special being and, if left to himself in an isolated condition, would be one of the weakest creatures; but associated with his kind, he works wonders.&rdquo; <span class='qfont'>Daniel Webster</span>";
Quotation[3] = "&ldquo;There are two ways of spreading light: to be the candle or the mirror that reflects it.&rdquo; <span class='qfont'>Edith Wharton</span>";
Quotation[4] = "&ldquo;La liberta' non e' star sopra un albero, non e' neanche il volo di un moscone, la liberta' non e' uno spazio libero, liberta' e' partecipazione.&rdquo; <span class='qfont'>Giorgio Gaber</span>";
Quotation[5] = "&ldquo;We will have time to reach the Millennium Development Goals - worldwide and in most, or even all, individual countries - but only if we break with business as usual. We cannot win overnight.&rdquo; <span class='qfont'>Kofi Annan</span>";
Quotation[6] = "&ldquo;Non si puo' risolvere un problema con lo stesso modo di pensare che ha generato il problema.&rdquo; <span class='qfont'>Alber Einstein</span>";
Quotation[7] = "&ldquo;Il possibile non verrebbe mai raggiunto se nel mondo non si ritentasse sempre l'impossibile.&rdquo; <span class='qfont'>Max Weber</span>";
Quotation[8] = "&ldquo;Un uomo senza sogni, senza utopie, senza ideali, sarebbe un mostruoso animale, un cinghiale laureato in matematica pura.&rdquo; <span class='qfont'>Fabrizio De Andre'</span>";
Quotation[9] = "&ldquo;Una carta del mondo che non contiene il Paese dell'Utopia non e' degna nemmeno di uno sguardo.&rdquo; <span class='qfont'>Oscar Wilde</span>";
Quotation[10] = "&ldquo;Se gli uomini fossero tanto miseri da occuparsi soltanto del presente, non si seminerebbe, ne' si costruirebbe, ne' si allestirebbe, ne' si provvederebbe a nulla.&rdquo; <span class='qfont'>Voltaire</span>";
Quotation[11] = "&ldquo;Tutto scorre, niente sta fermo.&rdquo; <span class='qfont'>Eraclito</span>";
Quotation[12] = "&ldquo;Il dubbio e' uno dei nomi dell'intelligenza.&rdquo; <span class='qfont'>Jorge Luis Borges</span>";
Quotation[13] = "&ldquo;L'utopia e' una donna bellissima che vedo sullo sfondo. Io avanzo di due passi, lei arretra di due. Io avanzo di tre, lei arretra ancora. A cosa serve allora l'utopia?... A camminare.&rdquo; <span class='qfont'>Eduardo Galeano</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();