//<script type="text/javascript"> 
//create an array and place the information in the array
//then just display that element of the array
	//var Quotes = new Array(31)
	var now = new Date()
    var days = new Array(
      'Sunday','Monday','Tuesday',
      'Wednesday','Thursday','Friday','Saturday')
    var months = new Array(
      'January','February','March','April','May',
      'June','July','August','September','October',
      'November','December')
 	var Elder = new Array("one","two",
 	"three","four","five", "Six")
 
 
 
 
 var Author=new Array('Marcus Aurelius',
'Maxim Gorky',
'Professor Dumbledore  to Harry Potter',
'Atisha',
'Lin-Chi',
'Martin Luther King, Jr',
'Albert Einstein',
'Harry Emerson Fosdick',
'Ralph Waldo Emerson',
'Sylvia Robinson',
'Mother Teresa',
'Cheryl Tiegs',
'Willian Hellman',
'Pogo',
'Herbert Spencer',
'George Washington Carver',
'Leo Buscaglia',
'Winston Churchill',
'Henry Ward Beecher',
'Japanese Proverb',
'George Bernard Shaw',
'Plato',
'Thomas L. Friedman',
'Micah 6:8',
'Pope Paul VI',
'Unknown',
'Helen Keller',
'Saint Teresa of Avila',
'Zig Ziglar',
'Professor Dumbledore  to Harry Potter',
'Sir Arthur Helps')






   var Quotes=new Array(
'The first rule is to keep an untroubled spirit.  The second is to look things in the face and know them for what they are.',
'Happiness always looks small while you hold it in your hands, but let it go, and you learn at once how big and precious it is.',
'It is not our abilities that show what we truly are, it is our choices.',
'The greatest achievement is selflessness.  The greatest worth is self-mastery.  The greatest quality is seeking to serve others.  The greatest precept is continual awareness.  The greatest patience is humility.',
'If you live the sacred and despise the ordinary, you are still bobbing in the ocean of delusion.',
'Faith is taking the first step even when you dont see the whole staircase.',
'Not everything that can be counted counts, and not everything that counts can be counted.',
'The world is moving so fast these days that the man who says it can not be done is generally interrupted by someone doing it.',
'Do not go where the path may lead, go instead where there is no path and leave a trail.',
'Some think it is holding on that makes one strong; sometimes it is letting go.',
'I know God will not give me anything I can not handle. I just wish that He did not trust me so much.',
'Like anyone else, there are days I feel beautiful and days I do not, and when I do not, I do something about it.',
'It is a sad day when you find out that it is not accident or time or fortune, but just yourself that kept things from you.',
'We have met the enemy and he is us.',
'The great aim of education is not knowledge but action.',
'How far you go in life depends on your being tender with the young, compassionate with the aged, sympathetic with the striving and tolerant of the weak and the strong. Because someday in life you will have been all of these.',
'Too often we underestimate the power of a touch, a smile, a kind word, a listening ear, an honest compliment, or the smallest act of caring, all of which have the potential to turn a life around.',
'The pessimist sees difficulty in every opportunity. The optimist sees the opportunity in every difficulty.',
'It is the heart that makes a man rich. He is rich according to what he is, not according to what he has.',
'Vision without action is a daydream. Action without vision is a nightmare.',
'Some men see things the way they are and ask, Why? I dream things that never were, and ask Why not?',
'Wise men speak because they have something to say, fools because they have to say something.',
'Change is hardest on those who have difficulty changing.  But change is natural, change is not new; change is important.',
'What does the Lord require of you? To act justly and love mercy and walk humbly with your God.',
'If you want peace, you must work for justice.',
'Always leave things better than you found them.',
'Life is either a daring adventure or nothing. Security does not exist in nature, nor do the children of men as a whole experience it. Avoiding danger is no safer in the long run than exposure.',
'For prayer is nothing else than being on terms of friendship with God.',
'You can get everything in life you want if you will just help enough other people get what they want.',
'It does not do to dwell on dreams Harry; and forget to live.',
'Wise sayings often fall on barren ground but a kind word is never thrown away.')
 
    var date = ((now.getDate()<10) ? "0" : "")+ now.getDate()
    function fourdigits(number)	{
    return (number < 1000) ? number + 1900 : number;}
    today =  days[now.getDay()] + ", " + months[now.getMonth()] + " " + date + ", " + (fourdigits(now.getYear()))
	var d=new Date().getDay()
    document.write(Quotes[eval(date)]+"<br>"+"<br>"+"by"+"<br>")
	document.write(Author[eval(date)])
		

//</script> 