// JavaScript Document

var quotes = new Array;
quotes.push("...since words were<br>introduced here things have gone<br>poorly for the<br>planet... <br><em>A R Ammons</em>");
quotes.push("I hope one day to be able<br>to function entirely without<br>the written word<br><em>Georgia O'Keefe</em>");
quotes.push("Do nothing, but do it at the right moment.<br><em>Gerald Kersh</em>");
quotes.push("I always started a job with the feeling that I'd soon quit or be fired, and this gave me a relaxed manner that was mistaken for intelligence or some secret power.<br><em>Charles Bukowski</em>");
quotes.push("Culture is slowness. <br><em>Damaso Alonso</em>");
document.write(quotes[(Math.floor(Math.random() * quotes.length))]);
