<!--
quotes = new Array(29);
authors = new Array(29);
quotes[0] = "Those who expect to reap the blessings of freedom, must, like men, undergo the fatigue of supporting it.";
authors[0] = "Thomas Paine, 1737-1809, American Patriot & Political Philosopher";
quotes[1] = "When the leaders choose to make themselves bidders at an auction of popularity, their talents, in the construction of the state, will be of no service. They will become flatterers instead of legislators; the instruments, not the guides, of the people.";
authors[1] = "Edmund Burke, 1729-1797, British Political Writer, Statesman";
quotes[2] = "In this world, you must be oh so smart or oh so pleasant. Well, for years I was smart. I recommend pleasant. And you may quote me.";
authors[2] = "Elwood P. Dowd, Harvey 1950";
quotes[3] = "A man should never be ashamed to own that he has been in the wrong, which is but saying that he is wiser today than he was yesterday.";
authors[3] = "Alexander Pope, 1688-1744, English Poet";
quotes[4] = "There is no sadder sight than a young pessimist, except an old optimist.";
authors[4] = "Mark Twain, 1835-1910, American Humorist & Novelist";
quotes[5] = "Pain nourishes courage. You can't be brave if you've only had wonderful things happen to you.";
authors[5] = "Mary Richards, Mary Tyler Moore 1970";
quotes[6] = "The world is moved not only by the mighty shoves of the heroes, but also by the aggregate of the tiny pushes of each honest worker.";
authors[6] = "Helen Keller, 1880-1968, American Author & Lecturer";
quotes[7] = "I like to see a man proud of the place in which he lives.  I like to see a man live so that his place will be proud of him.";
authors[7] = "Abraham Lincoln, 1809-1865, 16th American President";
quotes[8] = "Do you remember the things you were worrying about a year ago? How did they work out? Didn't you waste a lot of fruitless energy on account of most of them? Didn't most of them turn out all right after all?";
authors[8] = "Dale Carnegie, 1888-1955, American Public Speaker & Author";
quotes[9] = "I expect to pass through this life but once. If, therefore there can be any kindness I can show or any good thing I can do for any fellow being let me do it now...as I shall not pass this way again.";
authors[9] = "Stephen Grellet";
quotes[10] = "Every gesture we make, every word we utter, every step we take makes a footprint on our souls.";
authors[10] = "Jan Mitchell";
quotes[11] = "The world steps aside to let any man pass if he knows where he is going.";
authors[11] = "David S. Jordan, 1851-1931, American Biologist & Educator";
quotes[12] = "Do, or Do Not... There is no try.";
authors[12] = "Yoda, Star Wars 1977";
quotes[13] = "Clothes make the man, naked people have little or no influence on society.";
authors[13] = "Mark Twain, 1835-1910, American Humorist & Novelist";
quotes[14] = "Fear exists for one purpose; to be conquered.";
authors[14] = "Kathryn Janeway, Star Trek Voyager 1995";
quotes[15] = "Beginning today, treat everyone you meet as if they were going to be dead by midnight. Extend to them all the care, kindness and understanding you can muster, and do with no thought of any reward. Your life will never be the same again.";
authors[15] = "Og Mandino, 1923-1996, American Inspirational Speaker & Author";
quotes[16] = "In interactions with others, instead of trying to be right, why don't we try being kind?";
authors[16] = "Wayne Dyer";
quotes[17] = "Coming together is a beginning; keeping together is a process; working together is success.";
authors[17] = "Henry Ford, 1863-1947, American Automobile Industrialist";
quotes[18] = "Beauty is in the eye of the beholder and it may be necessary from time to time to give a misinformed beholder a black eye.";
authors[18] = "Miss Piggy, American Muppet & Pig";
quotes[19] = "I've learned that people will forget what you said, people will forget what you did, but people will never forget how you made them feel.";
authors[19] = "Maya Angelou, 1928-, American Author & Poet";
quotes[20] = "All of us, if measured by a mere snippet of our life when we weren't at our best, wouldn't measure up to much at all.";
authors[20] = "Jan Mitchell";
quotes[21] = "Face your deficiencies and acknowledge them; but do not let them master you. Let them teach you patience, sweetness, insight.";
authors[21] = "Helen Keller, 1880-1968, American Writer";
quotes[22] = "I desire so to conduct the affairs of this administration that if at the end I have lost every other friend on earth, I shall at least have one friend left, and that friend shall be down inside of me.";
authors[22] = "Abraham Lincoln, 1809-1865, 16th American President";
quotes[23] = "Keep away from people who try to belittle your ambitions. Small people always do that, but the really great make you feel that you, too, can become great.";
authors[23] = "Mark Twain, 1835-1910, American Humorist & Novelist";
quotes[24] = "Some day, in years to come, you will be wrestling with the great temptation, or trembling under the great sorrow of your life. But the real struggle is here, now, in these quiet weeks. Now it is being decided whether, in the day of your supreme sorrow or temptation, you shall miserably fail or gloriously conquer. Character cannot be made except by a steady, long continued process.";
authors[24] = "Phillips Brooks, 1835–1893, American Episcopal Bishop";
quotes[25] = "There is all the difference in the world between treating people equally and attempting to make them equal.";
authors[25] = "F.A. Hayek, 1899–1992, Classical Liberal Scholar";
quotes[26] = "Service is the rent we pay for living, not something we do in our spare time.";
authors[26] = "Marian Wright Edelman, 1939–, Children's Defense Fund Founder";
quotes[27] = "A person's a person no matter how small.";
authors[27] = "Dr. Seuss, 1904-1991, US author & illustrator";
quotes[28] = "When you reach the goal, pause for a moment and fully experience how fulfilled, empowered, effective and purposeful it feels. Then smile to yourself with the satisfaction of knowing that you can choose to accomplish again tomorrow, and the next day, and the next.";
authors[28] = "Ralph Marston, US author";
function quoteIt()
{
  <!-- When adding/removing quotes, make sure to update the array numbers -->
  <!-- with the total number of quotes/authors; also update the number we -->
  <!-- multiply the random value with to the last value in the array.     -->

  var sub = Math.round(Math.random()*28);
  
  document.open();
  document.write("<p>" + "<i>" + "\"" + quotes[sub] + "\"" + "</i>" );
  document.write("<br />" + "<b>" + authors[sub] + "</b>" + "</p>" );
  document.close();
}
// -->