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

Quotation[0] = "WARRIORS! Revive the power of the ORBS!";
Quotation[1] = "This is a well. You might think that there is something to it... But in fact it is just an ordinary well.";
Quotation[2] = "No one touches my princess!! LIGHT WARRIORS?? You impertinent fools. I, Garland, will knock you all down!! - Garland";
Quotation[3] = "After a long journey, four young warriors arrive, each holding an ORB. ";


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