
//store the quotations in arrays
quotes = new Array(22);
authors = new Array(22);
quotes[0] = "Until death, I will perservere.";
authors[0] = "Alex (The Nameless)";
quotes[1] = "An ever-branching universe... it's a lot like the snow.  It all comes from the same sky...";
authors[1] = "Yuki (The Nameless)";
quotes[2] = "Seek the truth... even when it's painful.";
authors[2] = "Evan (We Were There...)";
quotes[3] = "What would you sacrifice to be with the one you love?";
authors[3] = "Russel (My Friend Kylie)";
quotes[4] = "Have you ever wondered what would happen if you jumped?";
authors[4] = "Shannon Getlar (Eclipse)";
quotes[5] = "Hope... that's the stuff dreams are made from.";
authors[5] = "Alfred (ZER07)";
quotes[6] = "Don't chase your dreams.  Live them.";
authors[6] = "Nero Canter (ZER07)";
quotes[7] = "When was it that the rain started falling?";
authors[7] = "Caitlyn (We Were There...)";
quotes[8] = "People can be incredibly cruel.";
authors[8] = "Kasha (We Were There...)";
quotes[9] = "Do you have the courage to fail?";
authors[9] = "Summit (The Nameless)";
quotes[10] = "So it's you.  You are my killer.";
authors[10] = "Gabriel (My Friend Kylie)";
quotes[11] = "For those who believe, no explanation is necessary";
authors[11] = "Shadow (Virtual Image)";
quotes[12] = "You can't win... He's the kind of person that brings a knife to a gun fight and wins.";
authors[12] = "Matt (The Nameless)";
quotes[13] = "This house is not a home.";
authors[13] = "Caitlyn (We Were There...)";
quotes[14] = "Although we're no longer together, we dream under the same sky.";
authors[14] = "Russel (My Friend Kylie)";
quotes[15] = "Everyone wants to believe in fairy tales, but honestly... there is no happily ever after.";
authors[15] = "Russel (My Friend Kylie)";
quotes[16] = "We keep fighting because were not dead yet.";
authors[16] = "Nik (ZER07)";
quotes[17] = "Don't smile if there's nothing to celebrate.  This is war.";
authors[17] = "Summit (The Nameless)";
quotes[18] = "Shallow hearts bring shallow victories.";
authors[18] = "Shadow (Virtual Image)";
quotes[19] = "There is no such thing as coincidence.  Only the wheel of destiny... and what can stop it.";
authors[19] = "Alex (The Nameless)";
quotes[20] = "I wanted nothing more than to keep him smiling forever... but things were not meant to last.";
authors[20] = "Caitlyn (We Were There...)";
quotes[21] = "How can we move toward the future if we forget the past?";
authors[21] = "Evan (We Were There...)";

//calculate a random index
index = Math.floor(Math.random() * quotes.length);

//display the quotation
document.write("<DL>\n");
document.write("<DT>" + "\"" + quotes[index] + "\"\n");
document.write("<DD>" + "-- " + authors[index] + "\n");
document.write("</DL>\n");

//done
