// GetQuote.js

theDate= new Date();
var currDate = theDate.getDate();
var currMth = theDate.getMonth();
var currYear = theDate.getYear();
currYear = (currYear < 2000) ? currYear + 1900 : currYear;
var textDate = currDate + '/' + (currMth + 1) + '/' + currYear;

var numQuotes = 31;
quotes = new Array(numQuotes+1);
sources = new Array(numQuotes+1);

quotes[1] = "So often we look at a calendar of days as merely a symbol of the passage of time. We forget why we are on this earth. We forget that there is a reason for all of the pain and all of the struggle. We forget that we were put on earth to learn something. If everything were perfect in this life, we would never learn anything new. We would not be able to elevate our spirits through the events that happen to us.";
sources[1] = "Lynn V. Andrews";

quotes[2] = "The mind is like a parachute: it works best when open.";
sources[2] = "Anonymous";

quotes[3] = "Learning is not a spectator sport.";
sources[3] = "Anonymous";

quotes[4] = "If you think education's expensive, try ignorance.";
sources[4] = "Anonymous";

quotes[5] = "May you have enough happiness to make you sweet, enough trials to make you strong, enough sorrow to keep you human, enough hope to make you happy.";
sources[5] = "Anonymous";

quotes[6] = "Education is learning what you didn't know you didn't know.";
sources[6] = "George Boas";

quotes[7] = "The whole world opened to me when I learned to read.";
sources[7] = "Mary McLeod Bethune";

quotes[8] = "If you can teach a student a lesson, you've taught him for a day; but if you can teach him to learn by creating curiosity, he will continue the learning process as long as he lives.";
sources[8] = "Chinese proverb";

quotes[9] = "If your plan is for one year, plant rice; If your plan is for ten years, plant trees; If your plan is for a hundred years, Educate children.";
sources[9] = "Confucius";

quotes[10] = "It's not what is poured into a student, but what is planted.";
sources[10] = "Linda Conway";

quotes[11] = "The weak can never forgive. Forgiveness is the attribute of the strong.";
sources[11] = "Mahatma Gandhi";

quotes[12] = "You must be the change you wish to see in the world.";
sources[12] = "Mahatma Gandhi";

quotes[13] = "Who shall kindle others must himself glow.";
sources[13] = "Italian Proverb";

quotes[14] = "In matters of style, swim with the current; in matters of principle, stand like a rock.";
sources[14] = "Thomas Jefferson";

quotes[15] = "The time is always right to do the right thing.";
sources[15] = "Martin Luther King Jr.";

quotes[16] = "All people dream, but not equally. Those who dream by night in the dusty recesses of their mind, wake in the morning to find that it was vanity. But the dreamers of the day are dangerous people, for they dream their dreams with open eyes, and make them come true.";
sources[16] = "T.E. Lawrence (AKA 'Lawrence of Arabia')";

quotes[17] = "Things turn out best for the people who make the best out of the way things turn out.";
sources[17] = "Art Linkletter";

quotes[18] = "Every experience in life, everything with which we have come in contact in life, is a chisel which has been cutting away at our life statue, molding, modifying, shaping it. We are part of all we have met.  Everything we have seen, heard, felt, or thought has had its hand in molding us, shaping us.";
sources[18] = "Orson Swett Marden";

quotes[19] = "Between the great things we cannot do and the small things we will not do, the danger is that we shall do nothing.";
sources[19] = "Adolph Monod";

quotes[20] = "From Delusion lead me to Truth; From Darkness lead me to Light; From Death lead me to Immortality.";
sources[20] = "Muslim Proverb";

quotes[21] = "Change your thoughts and you change your world.";
sources[21] = "Norman Vincent Peale";

quotes[22] = "The principle goal of education is to create men and woman who are capable of doing new things, not simply repeating what other generations have done.";
sources[22] = "Jean Piaget";

quotes[23] = "The real voyage of discovery consists not in seeking new landscapes but in having new eyes.";
sources[23] = "Marcel Proust";

quotes[24] = "The credit belongs to those who are actually in the arena, who strive valiantly; who know the great enthusiasms, the great devotions, and spend themselves in a worthy cause; who at the best, know the triumph of high achievement; and who, at the worst, if they fail, fail while daring greatly, so that their place shall never be with those cold and timid souls who know neither victory nor defeat.";
sources[24] = "Theodore Roosevelt";

quotes[25] = "Three passions, simple but overwhelmingly strong, have governed my life: the longing for love, the search for knowledge, and unbearable pity for the suffering of mankind.";
sources[25] = "Bertrand Russell";

quotes[26] = "Time is the coin of your life. It is the only coin you have, and only you can determine how it will be spent. Be careful lest you let other people spend it for you.";
sources[26] = "Carl Sandburg";

quotes[27] = "Yesterday is a dream, tomorrow but a vision. But today well lived makes every yesterday a dream of happiness, and every tomorrow a vision of hope. Look well, therefore to this day.";
sources[27] = "Sanskrit Proverb";

quotes[28] = "Do what you fear and the death of that fear is certain.";
sources[28] = "Henry David Thoreau";

quotes[29] = "Be in charge of your own destiny or some one else will.";
sources[29] = "Jack Welch";

quotes[30] = "The true perfection of man lies, not in what man has, but in what man is. Nothing should be able to harm a man but himself.  Nothing should be able to rob a man at all. What a man really has is what is in him. What is outside of him should be a matter of no importance.";
sources[30] = "Oscar Wilde";

quotes[31] = "A man is not honest simply because he never had a chance to steal.";
sources[31] = "Yiddish proverb";

document.write('<H3>Quote for ' + textDate + '</H3>' + '<br />');
document.write('<b><i>' + quotes[currDate] + '</i></b><br />');
document.write('<b><i>' + sources[currDate] + '</i></b><br />');

// End GetQuote.js