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

Quotation[0] = "Garland: We will never come to accept one another. We shall always be in conflict!";
Quotation[1] = "Firion: Emperor! They have only only gone to do what they must!";
Quotation[2] = "Golbez: The true brillance of the crystal is not visible to the ete. Casting about you gaze will not reveal a single mote of its light.";
Quotation[3] = "Kuja: Believe? In others? Why do you persists with this mummers' farce?";
Quotation[4] = "Cloud: I want to know. I have to know if that dream is really strong enough. Strong enough to keep you fighting.";




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