// Add quotes here//
$quote = array();
$quote[0] = "
Hatch a dream and then believe it.
- Rod McKuen
";
$quote[1] = "
The secret to creativity is knowing how to hide your sources.
- Albert Einstein
";
$quote[2] = "
Put all your eggs in one basket, and watch that basket.
- Mark Twain
";
$quote[3] = "
Nothing in life is to be feared. It is only to be understood.
- Marie Curie
";
$quote[4] = "
I do not fear computers. I fear the lack of them.
- Isaac Asimov
";
$quote[5] = "
I love criticism just so long as it's unqualified praise.
- Noel Coward
";
$quote[6] = "
The only time you run out of chances is when you stop taking them.
- Patti LaBelle
";
$quote[7] = "
Too often we give our children answers to remember rather than problems to solve.
- Roger Lewin
";
$quote[8] = "
Very little is needed to make a happy life. It is all within yourself, in your way of thinking.
- Marcus Aurelius
";
$quote[9] = "
When solving problems, dig at the roots instead of just hacking at the leaves.
- Anthony J. D'Angelo
";
$quote[10] = "
I discovered I always have choices and sometimes it's only a choice of attitude.
- Judith M. Knowlton
";
$quote[11] = "
Opportunity is missed by most people because it is dressed in overalls and looks like work.
- Thomas A. Edison
";
$quote[12] = "
Of cheerfulness, or a good temper - the more it is spent, the more of it remains.
- Ralph Waldo Emerson
";
$count = count($quote) - 1;
$num = rand(0,$count);
echo $quote[$num];
?>