Fortune Cookie Script 5

<script>
//fcs5
var Quotation=new Array()
Quotation[0] = "The only happiness in life is to love and be loved.";
Quotation[1] = "If you follow someone else, you are ignoring your own path.";
Quotation[2] = "Your hidden creative talents will soon be revealed.";
Quotation[3] = "The hardest part of life is remembering to enjoy it.";
Quotation[4] = "Your warmth encourages honesty at home.";
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation() {
document.write(Quotation[whichQuotation]);}
</script>
