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

Quotation[0] = "You don't need a reason to help people. - Zidane Tribal";
Quotation[1] = "Some day I will be queen, but I will always be myself. - Princess Garnet";
Quotation[2] = "How can you prove that we exist? Maybe we don't exist... - Vivi Ornitier";
Quotation[3] = "To be Forgotten is worse than Death. - Freya Crescent";
Quotation[4] = "The only thing reliable about the future is uncertainty. - Amarant Coral";
Quotation[5] = "I do what I want! You have problem?! - Quina";
Quotation[6] = "I have a favor I wish to ask of you... I wish to be kidnapped right away. - Garnet";
Quotation[7] = "Is stone edible? Or is for barbeque? — Quina";
Quotation[8] = "In a world of nothing, fear does not exist. This is the world that all life desires. - Necron";




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