var Quotation=new Array()
// Do not change this.

Quotation[0] = "I...will not be referred to in the past tense!- Squall Leonheart";
Quotation[1] = "I dreamt I was a moron. - Squall Leonhart";
Quotation[2] = "Ooh neato! A hole in the middle of no-where! - Selphie Tilmitt";
Quotation[3] = "Great, I have a Chicken Wuss and a guy who just reached puberty in my squad. -Seifer";
Quotation[4] = "That's a lie. I don't know anything. I'm confused. I don't want to depend on anyone. How can I do that? Someone tell me... Someone? So I'll end up depending on others after all... - Squall Leonheart";



var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();