function quoteDuJour() {
	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;
	var quotes = new Array();
	quotes[1] = new Array();
	quotes[1][0] = "It is never too late to be what you might have been.";
	quotes[1][1] = "(George Eliot)";

	quotes[2] = new Array();
	quotes[2][0] = "Shoot for the moon. Even if you miss, you'll land among the stars.";
	quotes[2][1] = "(Les Brown)";
	
	quotes[3] = new Array();
	quotes[3][0] = "Not everything that is faced can be changed, but nothing can be changed until it is faced.";
	quotes[3][1] = "(James Baldwin)";
	
	quotes[4] = new Array();
	quotes[4][0] = "We are what we repeatedly do. Excellence, then, is not an act, but a habit.";
	quotes[4][1] = "(Aristotle)";

	quotes[5] = new Array();
	quotes[5][0] = "Not knowing when the dawn will come, I open every door.";
	quotes[5][1] = "(Emily Dickinson)";

	quotes[6] = new Array();
	quotes[6][0] = "A problem is a chance for you to do your best.";
	quotes[6][1] = "(Buke Ellington)";

	quotes[7] = new Array();
	quotes[7][0] = "Nothing is beneath you if it is in the direction of your life.";
	quotes[7][1] = "(Ralph Waldo Emerson)";

	quotes[8] = new Array();
	quotes[8][0] = "One of the greatest discoveries a man makes, one of his great surprises, is to find he can do what he was afraid he couldn't do.";
	quotes[8][1] = "(Henry Ford)";

	quotes[9] = new Array();
	quotes[9][0] = "You can't build a reputation on what you are going to do.";
	quotes[9][1] = "(Henry Ford)";

	quotes[10] = new Array();
	quotes[10][0] = "We must become the change we want to see.";
	quotes[10][1] = "(Gandhi)";

	quotes[11] = new Array();
	quotes[11][0] = "The greatest mistake you can make in life is to be continually fearing that you will make one.";
	quotes[11][1] = "(Ellen Hubbard)";

	quotes[12] = new Array();
	quotes[12][0] = "It's not whether you get knocked down, it's whether you get back up.";
	quotes[12][1] = "(Vince Lombardi)";
	
	quotes[13] = new Array();
	quotes[13][0] = "Most of our obstacles would melt away if, instead of cowering before them, we should make up our minds to walk boldly through them.";
	quotes[13][1] = "(Orison Swett Marden)";
	
	quotes[14] = new Array();
	quotes[14][0] = "It is not because things are difficult that we do not dare; it is because we do not dare that they are difficult.";
	quotes[14][1] = "(Seneca)";

	quotes[15] = new Array();
	quotes[15][0] = "Never give up, for that is just the place and time that the tide will turn.";
	quotes[15][1] = "(Harriet Beecher Stowe)";

	quotes[16] = new Array();
	quotes[16][0] = "Opportunities multiply as they are seized.";
	quotes[16][1] = "(Sun Tzu)";

	quotes[17] = new Array();
	quotes[17][0] = "Anyone who has never made a mistake has never tried anything new.";
	quotes[17][1] = "(Albert Einstein)";

	quotes[18] = new Array();
	quotes[18][0] = "Worrying is like a rocking chair, it gives you something to do, but it doesn't get you anywhere.";
	quotes[18][1] = "(Anonymous)";

	quotes[19] = new Array();
	quotes[19][0] = "Always do right; this will gratify some people and astonish the rest.";
	quotes[19][1] = "(Mark Twain)";

	quotes[20] = new Array();
	quotes[20][0] = "Let the refining and improving of your own life keep you so busy that you have little time to criticize others.";
	quotes[20][1] = "(H. Jackson Brown)";
	
	quotes[21] = new Array();
	quotes[21][0] = "Life isn't about finding yourself. Life is about creating yourself.";
	quotes[21][1] = "(George Bernard Shaw)";

	quotes[22] = new Array();
	quotes[22][0] = "Though no one can go back and make a brand new start, anyone can start from now and make a brand new ending.";
	quotes[22][1] = "(Anonymous)";
	
	quotes[23] = new Array();
	quotes[23][0] = "The future belongs to those who believe in the beauty of their dreams.";
	quotes[23][1] = "(Eleanor Roosevelt)";
	
	quotes[24] = new Array();
	quotes[24][0] = "The secret to happiness is not in doing what one likes to do, but in liking what one has to do.";
	quotes[24][1] = "(Unknown)";

	quotes[25] = new Array();
	quotes[25][0] = "Dreams are renewable. No matter what our age or condition, there are still untapped possibilities within us and new beauty waiting to be born.";
	quotes[25][1] = "(Dr. Dale Turner)";

	quotes[26] = new Array();
	quotes[26][0] = "The time is always right to do what is right.";
	quotes[26][1] = "(Martin Luther King Jr.)";

	quotes[27] = new Array();
	quotes[27][0] = "We should never permit ourselves to do anything that we are not willing to see our children do.";
	quotes[27][1] = "(Brigham Young)";

	quotes[28] = new Array();
	quotes[28][0] = "Each difficult moment has the potential to open my eyes and open my heart.";
	quotes[28][1] = "(Myla Kabat-Zinn)";

	quotes[29] = new Array();
	quotes[29][0] = "We must accept finite disappointment, but we must never lose infinite hope.";
	quotes[29][1] = "(Martin Luther King, Jr.)";

	quotes[30] = new Array();
	quotes[30][0] = "In time of difficulties, we must not lose sight of our achievements.";
	quotes[30][1] = "(Mao Tse-Tung)";
	
	quotes[31] = new Array();
	quotes[31][0] = "The pessimist sees the difficulty in every opportunity; the optimist, the opportunity in every difficulty.";
	quotes[31][1] = "(L.P. Jacks)";	
	
	//document.write('<b>Quote for ' + textdate + '</b><br>');
	//document.write('<i>' + quotes[day] + '</i><p>');
	
	document.write('<p class="quote">"' + quotes[day][0] + '"</p>');
	document.write('<p class="author">' + quotes[day][1] + '</p>');
}
