// haiku.js file

// JavaScript Document
function makeArray(len) {
for (var i = 0; i < len; i++) this[i] = null;
this.length = len;
}

// you add as many quotes as you want here just make sure to change the makeArray(number)

haiku = new makeArray(33);

haiku[0] = "The web site you seek<br>Lies beyond our perception<br>But others await.",

haiku[1] = "Sites you are seeking<br>From your path they are fleeing<br>Their winter has come.",

haiku[2] = "A truth found, be told<br>You are far from the fold, Go<br>Come back yet again.",

haiku[3] = "Wind catches lily<br>Scatt'ring petals to the wind:<br>Your page is not found.",

haiku[4] = "These three are certain:<br>Death, taxes, and page not found.<br>You, victim of one.",

haiku[5] = "Errors have occurred.<br>We won't tell you where or why.<br>Lazy programmers.",

haiku[6] = "The code was willing<br>It considered your request,<br>But the chips were weak.",

haiku[7] = "Morning and sorrow<br>404 not with us now<br>Lost to paradise.",

haiku[8] = "Page not found? Alas!<br>Go try typing that again.<br>Accuracy counts.",

haiku[9] = "Page slips through fingers<br>Pulse pounding hard and frantic<br>Vanishing like mist.",

haiku[10] = "The dream is shattered<br>The web page cannot be found<br>Inside the spring rain.",

haiku[11] = "Error reduces<br>Your expensive computer<br>To a simple stone.",

haiku[12] = "The ten thousand things<br>How long do any persist?<br>The web page, not there.",

haiku[13] = "Emptyness of soul<br>Forever aching blackness:<br>\"Your page is not found.\"",

haiku[14] = "Click exciting link<br>Gossamer threads hold you back<br>404 not found.",

haiku[15] = "With searching comes loss<br>And the presence of absence:<br>The page is not found.",

haiku[16] = "You step in the stream,<br>But the water has moved on<br>The page is not here.",

haiku[17] = "Rather than a beep<br>Or a rude error message,<br>These words: 'Page not found.'",

haiku[18] = "Something you entered<br>Transcended parameters.<br>The page is unknown.",

haiku[19] = "Stay the patient course<br>Of little worth is your ire<br>404 Not Found",

haiku[20] = "There is a chasm<br>Of carbon and silicon<br>The server can't bridge.",

haiku[21] = "Chaos reigns within.<br>Reflect, retry, and perhaps<br>Your page shall return.",

haiku[22] = "A page like that?<br>It might be very useful<br>But it is not here.",

haiku[23] = "Server's poor response<br>Not quick enough for browser.<br>Timed out, plum blossom.",

haiku[24] = "Seeing my great fault<br>Through darkening dead servers<br>I begin again.",

haiku[25] = "Visit the home page<br>It can be done easily<br>Click Logo above.",

haiku[26] = "To have no errors<br>Would be life without meaning<br>No struggle, no joy",

haiku[27] = "Site is silent, still<br>No voices can be heard now<br>The cows roll their eyes.",

haiku[28] = "Alas, Page Not Found<br>So fleeting, the Internet<br>Bytes, like the mist, fade.",

haiku[29] = "Yesterday it worked<br>Today it is not working<br>The web is like that.",

haiku[30] = "That page is not here<br>Perhaps another would do?<br>Click, try yet again"

haiku[31] = "Virtual Petal<br>Falls on virtual water.<br>Sea of Knowledge, gone."

haiku[32] = "The Web, so fleeting;<br>That which you seek to find here<br>Like mist, fades away"

// The random number generator.
function rand(n) {
seed = (0x015a4e35 * seed) % 0x7fffffff;
return (seed >> 16) % n;
}
var now = new Date()
var seed = now.getTime() % 0xffffffff