<!-- Original:  George Chuang -->
<!-- Begin
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] = "I'd rather see a sermon than hear one any day; I'd rather have one walk beside me than merely point the way. - David O. McKay";
quotes[2] = "One machine can do the work of fifty ordinary men. No machine can do the work of one extraordinary man. - Elbert Hubbard";
quotes[3] = "The mediocre teacher tells. The good teacher explains. The superior teacher demonstrates. The great teacher inspires. - William Arthur Ward";
quotes[4] = "The most important thing in communication is to hear what isn't being said. - Peter F. Drucker";
quotes[5] = "If it's fun... it gets done! - Darren LaCroix";
quotes[6] = "The future belongs to those who prepare for it. - Ralph Waldo Emerson";
quotes[7] = "There are few wild beasts more to be dreaded than a talking man having nothing to say. - Jonathan Swift";
quotes[8] = "The right word may be effective, but no word was ever as effective as rightly timed pause. - Mark Twain";
quotes[9] = "In an economy of more - more ads, more e-mail, more meetings - the only scarce commodity is attention. If you want to get people's attention, whether during a formal presentation, a casual conversation, or a chance meeting on an airplane, you have to offer a compelling performance. - Curtis Sittenfeld";
quotes[10] = "There are two primary choices in life: to accept conditions as they exist, or accept the responsibility for changing them. -  Dr. Denis Waitley";
quotes[11] = "The are two kinds of speakers - those that are nervous and those that are liars. - Mark Twain";
quotes[12] = "Whatever your field of endeavor, strive to be so good that you change someone's life. -  Jim Key";
quotes[13] = "No one every lost his job by listening too much. Calvin Coolidge, 30th U.S. President";
quotes[14] = "The shortest distance between two people is a laugh. - Victor Borge";
quotes[15] = "Learning is directly proportional to the amount of fun you have. - Robert Pike";
quotes[16] = "The time is always right to do what is right. - Martin Luther King, Jr.";
quotes[17] = "I am accused of telling a great many stories. They say it lowers the dignity of the Presidential office, but I find that people are more easily influenced by a broad, humorous illustration than in any other way. - Abraham Lincoln";
quotes[18] = "The schemes are laid in advance, it is surprising how often circumstances fit in with them. - Sir William Osler";
quotes[19] = "Genius is one percent inspiration and ninety-nine percent perspiration.  -  Thomas Edison  ";
quotes[20] = "I hear, I forget - I see, I remember - I do, I understand. - Confucius";
quotes[21] = "Self-confidence is the first requisite to great undertakings. -  Samuel Johnson  ";
quotes[22] = "History has demonstrated that the most notable winners usually encountered heartbreaking obstacles before they triumphed. They won because they refused  to become discouraged by their defeats. -  Bertie C. Forbes";
quotes[23] = "Effective communication is 20 percent what you know and 80 percent how you feel about what you know. - Jim Rohn";
quotes[24] = "What the mind of man can conceive and believe, it can achieve. -  Napolean Hill  ";
quotes[25] = "People often learn the most when they teach others. - Broad and Newstrom";
quotes[26] = "Now is the time. Needs are great, but your possibilities are greater. - Bill Blackman";
quotes[27] = "Two words 'information' and 'communication' are often used interchangeably, but they signify quite different things. Information is giving out - communication is getting through. - Sydney J. Harris";
quotes[28] = "Everyone's life is an object lesson to others. - Karl G. Maeser";
quotes[29] = "You will ALWAYS have or be able to get the necessary resources to do the things you REALLY want to do.  - Jim Key";
quotes[30] = "Each time someone stands up for an ideal, or acts to improve the lot of others, or strikes out against injustice, he sends forth a tiny ripple of hope. - Robert F. Kennedy";
quotes[31] = "The function of leadership is to produce more leaders, not more followers. - Ralph Nader";

document.write(quotes[day] + '<br>');
//  End -->