<script>
//fcs7
var Quotation=new Array()
Quotation[0] = "Listen not to vain words of empty tongue.";
Quotation[1] = "You have a natural grace and great consideration for others.";
Quotation[2] = "Endurance and persistence will be rewarded.";
Quotation[3] = "You are going to pass a difficult test.";
Quotation[4] = "Generosity and perfection are your everlasting goals.";
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation() {
document.write(Quotation[whichQuotation]);}
</script>
