// JavaScript Document

var quotes = new Array;
quotes.push("Winter.<br>Nothing much<br>to distinguish it by,<br>not even<br>sea from sky.");
quotes.push("What is there<br>before or after<br>experience?<br>Everything waits in the dark<br>for you to say,<br>Come in.");
quotes.push("This is<br>the natural history of<br>the mind.<br>I open my eyes<br>and the birds are there,<br>their wings pinned<br>to the blue arc<br>of the sky.");
document.write(quotes[(Math.floor(Math.random() * quotes.length))]);
