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

Quotation[0] = "I thought I heard my brother's voice... he said goodbye. - Cecil";
Quotation[1] = "You spoony bard! - Tellah";
Quotation[2] = "I am just a Dark Knight, with no courage to disobey his majesty. - Cecil";
Quotation[3] = "The Cecil I know would never whimper like this! The Cecil I love... - Rosa";
Quotation[4] = "I will not perish as long as there is evil within the hearts of people - Zeromus";
Quotation[5] = "Draw the enemies and... smash 'em! - Yang";
Quotation[6] = "You had a narrow escape, Cecil! - Kain";
Quotation[7] = "You must have been used by the Baron while you were amnesiac. - Tellah";


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