var quotes = new Array ();

quotes[0] = ['<p>Truly elegant design incorporates top-notch functionality into a simple, uncluttered form.</p><p><a href="http://www.bang-olufsen.com/page.asp?id=81&article=277">David Lewis</a></p>'];
quotes[1] = ['<p>The ability to simplify means to eliminate the unnecessary so that the necessary may speak.</p><p><a href="http://www.pbs.org/hanshofmann/">Hans Hofmann</a></p>'];
quotes[2] = ['<p>A designer knows he has achieved perfection not when there is nothing left to add, but when there is nothing left to take away.</p><p><a href="http://en.wikipedia.org/wiki/Antoine_de_Saint-Exup%C3%A9ry">Antoine De Saint-Exupery</a></p>'];
quotes[3] = ['<p>The perfection of art is to conceal art.</p><p><a href="http://en.wikipedia.org/wiki/Quintilian">Quintilian</a></p>'];
quotes[4] = ['<p>Form follows function &#151; that has been misunderstood. Form and function should be one, joined in a spiritual union.</p><p><a href="http://www.designmuseum.org/design/frank-lloyd-wright">Frank Lloyd Wright</a></p>'];
quotes[5] = ['<p>Il bacio esprime la consacrazione mistica di due anime avide di esprimere in forma sensibile ciò che interiormente vivono.</p><p><a href="file:///I:/Esoterismo/samael.htm">Samael Aun Weor</a></p>'];
quotes[6] = ['<p>Calma, pazienza e grande ingegno.</p><p><a href="http://it.wikipedia.org/wiki/Ermete_Trismegisto">Ermete Trismegisto</a></p>'];
quotes[7] = ['<p>Dammi la serenità di accettare ciò che non posso cambiare, la forza di cambiare ciò che è da cambiare, la consapevolezza di capire la differenza fra le due cose.</p><p><a href="http://www.san-francesco.it">S.Francesco</a></p>'];
quotes[8] = ['<p>Laufet, Brüder, eure Bahn, Freudig, wie ein Held zum Siegen - Percorrete, fratelli, la vostra strada, gioiosi, come un eroe verso la vittoria.</p><p><a href="file:///G:/ZzHtml/classica/beethoven/sinfonia9.htm">Beethoven - IX Sinfonia</a></p>'];


var Q = quotes.length;

function randomQuote() {
	var whichQuote=Math.round(Math.random()*(Q-1));
	if (document.getElementById('randomquote')) {
		document.getElementById('randomquote').innerHTML = quotes[whichQuote];
	}
}