
// ==============================================
// 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] = "He who has health has hope, and he who has hope has everything. -Arabian Proverb";
Quotation[1] = "Fall seven times, stand up eight. Japanese proverb.";
Quotation[2] = "Angels can fly because they take themselves lightly. G.K. Chesterton";
Quotation[3] = "When pain strikes, we often ask the wrong questions, such as, Why me? The right questions are, What can I learn from this/? What can I do about it? What can I accomplish in spite of it? Norman Vincent Peale";
Quotation[4] = "Patience is enjoying the journey. It's not climbing the mountain to get to the top; it's climbing the mountain to enjoy the climb. Enjoy the process of your own life. John-Roger";
Quotation[5] = "Have patience with all things, but mostly with yourself. Do not lose courage considering your own imperfections, but instantly begin remedying them. Every day begin the task anew. Saint Francis de Sales";
Quotation[6] = "A journey of a thousand miles begins with one step. Chinese proverb";
Quotation[7] = "It's hard to beat a person who never gives up. Babe Ruth";
Quotation[8] = "\"Success\" comes before \"work\" only in the dictionary. Anonymous";
Quotation[9] = "A needle that pierces may carry a thread that binds. James Hastings";
Quotation[10] = "An elephant can only be eaten one bite at a time. Proverb";
Quotation[11] = "You cannot prevent the birds of sorrow from flying over your head, but you can prevent them from building nests in your hair. Chinese proverb";
Quotation[12] = "To get results, decide to have fun. Fun creates enjoyment, which invites participation, which focuses attention, which expands awareness, which promotes insight, which generates knowledge, which facilitates action. And action gets results. Oswald Shallow";
Quotation[13] = "Every day is a gift. Treat it kindly. Share it with joy. Anonymous";
Quotation[14] = "Don't let what you cannot do interfere with what you can do. John Wooden";
Quotation[15] = "Here is the test to find whether your mission on earth is finished. If you're alive, it isn't. Richard Bach";
Quotation[16] = "No man is useless while he has a friend. Robert Louis Stevenson";
Quotation[17] = "Life is like the car pool lane. The only way to get to your destination quickly is to take some people with you. Peter Ward";
Quotation[18] = "Faith is taking the first step even when you don't see the whole staircase. Martin Luther King, Jr.";
Quotation[19] = "Love is a game that two can play and both win.--Eva Gabor";
Quotation[20] = "Love makes your soul crawl out from its hiding place. Zora Neale Hurston";
Quotation[21] = "A baby is born with a need to be loved -- and never outgrows it. Frank A. Clark";
Quotation[22] = "There is only one terminal dignity -- love.   Helen Hayes";
Quotation[23] = "Love does not begin and end the way we seem to think it does. Love is a battle, love is a war; love is a growing up. James A. Baldwin";
Quotation[24] = "For it was not into my ear you whispered, but into my heart. It was not my lips you kissed, but my soul. Judy Garland";
Quotation[25] = "Love takes off masks that we fear we cannot live without and know we cannot live within. James A. Baldwin";
Quotation[26] = "I have found the paradox, that if you love until it hurts, there can be no more hurt, only more love.  Mother Teresa";
Quotation[27] = "Love is the beauty of the soul. Saint Augustine";
Quotation[28] = "Doubt that the stars are fire, doubt that the sun doth move, doubt truth to be a liar, but never doubt I love. William Shakespeare";
Quotation[29] = "Love is the immortal flow of energy that nourishes, extends and preserves. Its eternal goal is life. Smiley Blanton";
Quotation[30] = "Sometimes the heart sees what is invisible to the eye. H. Jackson Brown, Jr.";
Quotation[31] = "Love is all we have; the only way that each can help the other. Euripides";
Quotation[32] = "Love means not ever having to say you're sorry. Erich Segal";
Quotation[33] = "There are three things that will endure-faith, hope and love-- and the greatest of these is love. 1 Corinthians 13:13 NLT";
Quotation[34] = "Success is to be measured not so much by the position that one has reached in life as by the obstacles which he has overcome while trying to succeed. Booker T. Washington";
Quotation[35] = "If you hunger for a lover, learn first to become your own.  Date yourself, romance yourself, spend the weekend comforting and listening to yourself. Bring flowers, fragrance and soothing music.  When love begins with you, you no longer demand from others the love and sustenance you should give yourself. Susan L. Taylor";
// ======================================
// 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]);}
showQuotation();