// ==============================================
// Copyright 2004 by CodeLifter.com
// Free for all; but please leave in this header.
// ==============================================

var Quotation=new Array() // do not change this!

// Set up the quotations to be shown, below.
// To add more quotations, continue with the
// pattern, adding to the array.  Remember
// to increment the Quotation[x] index!

Quotation[0] = "'Doing nothing is very hard to do... you never know when you're finished.'";
Quotation[1] = "'And in the end it's not the years in your life that count. It's the life in your years.' - Abraham Lincoln";
Quotation[2] = "'Write it in your heart that every day is the best day of the year.' - Ralph Waldo Emerson";
Quotation[3] = "'The best way to cheer your self is to cheer somebody else up.' - Mark Twain";
Quotation[4] = "'The miracle is this - the more we share, the more we have.'- Leonard Nimoy";
Quotation[5] = "'A day without laughter is a day wasted.' - Charlie Chaplin";
Quotation[6] = "'Happiness is felt by making other people happy.'";
Quotation[7] = "'Everyday is a gift, that's why they call it the present.'";
Quotation[8] = "'The biggest adventure you can ever take is to live the life of your dreams.'- Oprah Winfrey'";
Quotation[9] = "'Man needs his difficulties because they are necessary to enjoy success.'- Abdul Kalam";
Quotation[10] = "'The difference between ordinary and extraordinary is that little extra.'- Jimmy Johnson";
Quotation[11] = "'Genuine success comes only to those who are ready for it.'";
Quotation[11] = "'The mind is like a parachute. It doesn?t work unless it is open.'";
Quotation[11] = "'The only time you run out of chances is when you stop taking them.'";
Quotation[11] = "'Honesty is the best policy.'";

// ======================================
// Do not change anything below this line
// ======================================
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
