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

Quotation[0] = "If they wanted, they could make another Sephiroth - Vincent";
Quotation[1] = "I... won't become only a memory. - Sephiroth";
Quotation[2] = "Uh… what's a 'sending'? Are we going somewhere? - Tidus";
Quotation[3] = "We will join as a family, and strike back at the planet! - Kadaj";
Quotation[4] = "Who's been messin' with my materia? - Yuffie";
Quotation[5] = "Even though you're falling apart... I'm sure this will be a good thing. - Aeris";
Quotation[6] = "It's men's talk! You wouldn't understand it! - Cid";
Quotation[7] = "I pity you who understand nothing. - Cloud";
Quotation[8] = "Kneel, and show me your figure, begging for forgiveness. - Sephiroth";




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