  quotes = new Array(19);
  authors = new Array(19);
  quotes[0]   = "To know even one life has breathed easier because you have lived. This is to have succeeded.";
  authors[0]  = "Ralph Waldo Emerson";
  quotes[1]   = "O me O life!... Of the questions of these recurring; Of the endless trains of the faithless; Of cities fill'd with the foolish.... The question, O me! so sad, recurring - What good amid these, O me, O life? Answer. That you are here - that life exists and identity; That the powerful play goes on and you may contribute a verse.";
  authors[1]  = "Walt Whitman";
  quotes[2]   = "None are so old as those who have outlived enthusiasm.";
  authors[2]  = "Henry David Thoreau";
  quotes[3]   = "The pure and simple truth is rarely pure and never simple.";
  authors[3]  = "Oscar Wilde";
  quotes[4]   = "The mass of men lead lives of quiet desperation. What is called resignation is confirmed desperation.";
  authors[4]  = "Henry David Thoreau";
  quotes[5]   = "If a man does not keep pace with his companions, perhaps it is because he hears a different drummer.";
  authors[5]  = "Henry David Thoreau";
  quotes[6]   = "In the long run men hit only what they aim at. Therefore, though they should fail immediately, they had better aim at something high.";
  authors[6]  = "Henry David Thoreau";
  quotes[7]   = "I learned this, at least, by my experiment; that if one advances confidently in the direction of his dreams, and endeavors to live the life which he has imagined, he will meet with a success unexpected in common hours.";
  authors[7]  = "Henry David Thoreau";
  quotes[8]   = "Let us, then, be up and doing, with a heart for any fate; Still achieving, still pursuing, learn to labor and to wait.";
  authors[8]  = "Henry Wadsworth Longfellow";
  quotes[9]   = "Great spirits have often encountered violent opposition from weak minds.";
  authors[9]  = "Albert Einstein";
  quotes[10]  = "All men dream, but not equally. Those who dream by night in the dusty recesses of their minds, wake in the day to find that it was vanity: but the dreamers of the day are dangerous men, for they may act on their dreams with open eyes, to make them possible.";
  authors[10] = "T. E. Lawrence";
  quotes[11]  = "There are those that look at things the way they are and ask why? I dream of things that never were, and ask why not?";
  authors[11] = "Robert F. Kennedy";
  quotes[12]  = "The value of a man should be seen in what he gives and not in what he is able to receive.";
  authors[12] = "Albert Einstein";
  quotes[13]  = "Genius might be the ability to say a profound thing in a simple way.";
  authors[13] = "Chalres Bukowski";
  quotes[14]  = "Heights by great men reached and kept were not obtained by sudden flight but, while their companions slept, they were toiling upward in the night.";
  authors[14] = "Henry Wadsworth Longfellow";
  quotes[15]  = "Do not follow where the path may lead. Go instead where there is no path and leave a trail.";
  authors[15] = "Ralph Waldo Emerson";
  quotes[16]  = "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[16] = "Mark Twain";
  quotes[17]  = "There are risks and costs to a program of action, but they are far less than the long-range risks and costs of comfortable inaction.";
  authors[17] = "John F. Kennedy"
  quotes[18]  = "It is what you do with the time that you are given.";
  authors[18] = "J. R. R. Tolkien";
  index = Math.floor(Math.random() * quotes.length);
  document.write("");
  document.write("\"" + quotes[index] + "\"\n");
  document.write("&#8212; " + authors[index] + "\n");
  document.write("");