<!--
theDate= new Date();
var day = theDate.getDate();
var year = theDate.getYear();
year = (year < 2000) ? year + 1900 : year;
var textdate = (theDate.getMonth() + 1) + '/' + theDate.getDate() + '/' + year;

var numquotes = 31;
quotes = new Array(numquotes+1);

quotes[1] = "Enjoy when you can, and endure when you must.&#160; ~Johann&#160;Wolfgang&#160;von&#160;Goethe";
quotes[2] = "Every man dies. Not every man really lives.&#160; ~William&#160;Wallace";
quotes[3] = "All life is an experiment. The more experiments you make the better.&#160; ~Ralph Waldo&#160;Emerson";
quotes[4] = "Do what you can, with what you have, where you are. &#160; ~Theodore&#160;Roosevelt";
quotes[5] = "God offers to every mind its choice between truth and repose.&#160; Take which you please - you can never have both.&#160; ~Ralph&#160;Waldo&#160;Emerson";
quotes[6] = "The difference between ordinary and extraordinary is that little extra.&#160; ~Jimmy&#160;Johnson";
quotes[7] = "Have a heart that never hardens, a temper that never tires, a touch that never hurts.&#160; ~Charles&#160;Dickens";
quotes[8] = "Do not condemn the judgment of another because it differs from your own.  You may both be wrong.&#160; ~Dandemis";
quotes[9] = "Promise only what you can deliver.  Then deliver more than you promise. ; ~Author&#160;Unknown";
quotes[10] = "Vanity is so secure in the heart of man that everyone wants to be admired:&#160; even I who write this, and you who read this.&#160; ~Blaise&#160;Pascal";
quotes[11] = "In all things it is better to hope than to despair.&#160; ~Johann&#160;Wolfgang&#160;von&#160;Goethe";
quotes[12] = "He who has a why to live can bear almost any how. &#160; ~Friedrich&#160;Nietzsche";
quotes[13] = "You can tell more about a person by what he says about others than you can by what others say about him.&#160; ~Leo&#160;E&#160;Aikman";
quotes[14] = "The happiness of a man in this life does not consist in the absence but in the mastery of his passions.&#160; ~Lord&#160;Tennyson";
quotes[15] = "A lifetime of happiness! No man alive could bear it: it would be hell on earth.&#160; ~George&#160;Bernard&#160;Shaw";
quotes[16] = "Life is not merely to be alive, but to be well.&#160; ~Marcus&#160;Valerius&#160;Martial";
quotes[17] = "We don't see things as they are, we see things as we are..&#160; ~ Anais&#160;Nin";
quotes[18] = "When the character of a man is not clear to you, look at his friends.&#160; ~Japanese&#160;Proverb";
quotes[19] = "It has ever been my experience that folks who have no vices, have very few virtues.&#160; ~Abraham&#160;Lincoln";
quotes[20] = "A person is blessed once, but his troubles never come alone.&#160; ~Chinese&#160;Proverb";
quotes[21] = "We have two ears and one mouth so that we can listen twice as much as we speak.&#160; ~Epictetus";
quotes[22] = "The most I can do for my friend is simply be his friend.&#160; ~Henry&#160;David&#160;Thoreau";
quotes[24] = "To know the road ahead, ask those coming back.&#160; ~Chinese&#160;Proverb";
quotes[25] = "A little inaccuracy sometimes saves tons of explanation.&#160; ~Saki";
quotes[25] = "It is more easy to be wise for others than for ourselve.&#160; ~François&#160;Duc&#160;de&#160;La&#160;Rochefoucauld";
quotes[26] = "Hope never abandons you; you abandon it.&#160; ~George&#160;Weinberg";
quotes[27] = "When one has one's hand full of truth it is not always wise to open it.&#160; ~French&#160;Proverb";
quotes[28] = "The secret of success in life is for a man to be ready for his opportunity when it comes.&#160; ~Benjamin&#160;Disraeli";
quotes[29] = "Truth is the most valuable thing we have, so I try to conserve it.&#160; ~Mark&#160;Twain";
quotes[30] = "Life is like riding a bicycle - in order to keep your balance, you must keep moving.&#160; ~Albert&#160;Einstein";
quotes[31] = "You've got to do your own growing, no matter how tall your grandfather was.&#160; ~Irish&#160;Proverb";


document.write('<b><i>Daily Inspiration for ' + textdate + '&#58;' + '</i></b><br>');
document.write(quotes[day]);


