var quote = new Array()
quote[0] = '"Imagination is better than knowledge." &mdash; Albert Einstein';
quote[1] = '"To design is to communicate clearly by whatever means you can control or master." &mdash; Milton Glaser';
quote[2] = '"A common mistake that people make when trying to design something completely foolproof is to underestimate the ingenuity of complete fools." &mdash; Douglas Adams';
quote[3] = '"I am still learning." &mdash; Michelangelo';
quote[4] = '"We cannot solve our problems with the same thinking we used when we created them." &mdash; Albert Einstein';
quote[5] = '"Simple design, intense content" &mdash; Edward Tufte';

var which = Math.floor(Math.random()*quote.length);
			
document.write(quote[which]);
