// JavaScript Document

var quotes = new Array;
quotes.push("There is nothing to say about anything. Therefore there can be no limit to the number of books<br><em>E M Cioran</em>");
quotes.push("The Brain - is wider than the sky - <br><em>Emily Dickinson</em>");
quotes.push("How can I deny that these hands and this body are mine?... yet I must remember that I am a man who sleeps at night.<br><em>Descartes</em>");
quotes.push("It's the old story,<br>Every morning something different is real.<br><em>W S Merwin</em>");
quotes.push("I don't think God likes crap in art.<br><em>J F Powers</em>");
document.write(quotes[(Math.floor(Math.random() * quotes.length))]);
