<script>
//fcs6
var Quotation=new Array()
Quotation[0] = "If you continually give you will continually have.";
Quotation[1] = "Use your charm and personality to your advantage.";
Quotation[2] = "Commit to what you feel in your heart.";
Quotation[3] = "The key to happiness is having dreams.";
Quotation[4] = "Put your ingenuity to work in anything you're doing.";
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation() {
document.write(Quotation[whichQuotation]);}
</script>
