// JavaScript Document

var quotes = new Array;
quotes.push("I looked through every crack<br>to see where nothing hid<br>but something stared me back<br>just as it always did.");
quotes.push("After the rain<br>the sun.<br>You see<br>we are already living<br>in the afterlife.");
quotes.push("I love trees<br>as analogies,<br>but birds<br>can't find words<br>for what a tree is for<br>without a metaphor.");
document.write(quotes[(Math.floor(Math.random() * quotes.length))]);
