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>'];

var Q = quotes.length;

function randomQuote() {
	var whichQuote=Math.round(Math.random()*(Q-1));
	if (document.getElementById('randomquote')) {
		document.getElementById('randomquote').innerHTML = quotes[whichQuote];
	}
}