// increase the array's dimension
// then add your new quote at the bottom

top.showQuotes = true;

function quoteObj(quote, author, source) {
    this.quote = quote
    this.author = author
    this.source = source
}

function randomQuote() {
    var quote = quoteArr[top.randNum%quoteArr.length].quote;
    var author = quoteArr[top.randNum%quoteArr.length].author;
    var source =  quoteArr[top.randNum%quoteArr.length].source;
    var quoteStr = "";
    quoteStr += quote + "</TD></TR>";
    quoteStr += "<TR><TD COLSPAN=2></TD><TD ALIGN=LEFT style='color:gray'>";
    if (author != "") {
        quoteStr += author + "<BR>";
    }
    quoteStr += "<I>" + source + "</I>";
    document.close();
    document.write(quoteStr);
    document.close();
}

// REMEMBER TO INCREASE THIS
var quoteArr = new Array(25);


quoteArr[0] = new quoteObj("the secret of belief is repetition", "", "The Reasoning Wall");

quoteArr[1] = new quoteObj("what choice have I to shape the constellations I perceive?", "", "Crutches");

quoteArr[2] = new quoteObj("I ask your name<BR>and you tell me my own<BR>so I ask again<BR>and you say, &quot;guilt&quot;", "", "Crutches");

quoteArr[3] = new quoteObj("night makes the sun a memory", "", "Into the Dream");

quoteArr[4] = new quoteObj("I see no decision, no what-to-do<BR>to pull out the arrow or push it through", "", "Into the Dream");

quoteArr[5] = new quoteObj("man myopic longing<BR>staring out to sea", "", "Into the Dream");

quoteArr[6] = new quoteObj("so you clamour for peace<BR>as if that were your mind<BR>shield your eyes from darkness<BR>better to be blind", "", "Into the Dream");

quoteArr[7] = new quoteObj("the windmill lives or dragon dies<BR>at my command", "", "Into the Dream");

quoteArr[8] = new quoteObj("how does it feel<BR>to hate what you are<BR>or love what you should hate?<BR>this is your fate", "", "Into the Dream");

quoteArr[9] = new quoteObj("the evil in the world I have known<BR>is due to fear alone", "", "Into the Dream");

quoteArr[10] = new quoteObj("when judgment chains our darkest side<BR>denial breeds a genocide", "", "Into the Dream");

quoteArr[11] = new quoteObj("look into the sky<BR>connect the dots and tell me what you see", "", "Into the Dream");

quoteArr[12] = new quoteObj("expelled from Eden we must roam", "", "Before the Storm");

quoteArr[13] = new quoteObj("every vessel here in this randomness<BR>just seems to verify our unity of form", "", "Before the Storm");

quoteArr[14] = new quoteObj("unrewarded goes the best of efforts<BR>perfection in this realm of flaws", "", "The Reasoning Wall");

quoteArr[15] = new quoteObj("dancing in our masks of hell and conquest", "", "The Reasoning Wall");

quoteArr[16] = new quoteObj("she's daughter of sorrow<BR>she's trapped in the womb of everyday", "", "Carmilla");

quoteArr[17] = new quoteObj("mound of earth<BR>pregnant grave<BR>he is begging for rebirth<BR>he is calling to the earth", "", "Carmilla");

quoteArr[18] = new quoteObj("our aim is sure across the map<BR>a pin for every heartbeat<BR>and though we know we'll never drop<BR>today we leave the map there", "", "America");

quoteArr[19] = new quoteObj("have you walked on the sand<BR>have you breathed in the morning sky<BR>have you known of the flesh<BR>found your truth with the naked eye<BR>have you worked with your hands<BR>have you labored for your children<BR>have you wondered where you're going<BR>have you wondered where you might have been", "", "Canto IV (Limbo)");

quoteArr[20] = new quoteObj("welcome to the world<BR>you've cut the cord<BR>it's time for breathing<BR>sobbing at the shore", "", "Now");

quoteArr[21] = new quoteObj("I blame the circus side show clowns<br>I blame the advertiser's verbs and nouns<br>I blame a female in her bed<br>I blame the primal thoughts inside my head<br>I blame the shadow on the ground<br>I blame the blame in me, blame all around", "", "Distracted");

quoteArr[22] = new quoteObj("I must be sick in the head<br>no one I know seems to be so underfed<br>how did this happen to me<br>stuff'd full, engorged, had my fill,<br>yet I'm still hungry", "", "Dirty Mind");

quoteArr[23] = new quoteObj("though I fear it's wrong<br>we're still raised to love the strong<br>power has allure<br>the archetypes endure<br>and we follow along", "", "Modern Times");

quoteArr[24] = new quoteObj("Sometimes peel back the scab<BR>and expose the wound.", "M. Parmenter", "Sometimes");


