function getQuote() {
      // Create the arrays
      quotes = new Array(14);
      sources = new Array(14);
  
      // Initialize the arrays with quotes
      quotes[0] = "When I was a boy of 14, my father was so ignorant..." +
      "but when I got to be 21, I was astonished at how much he had learned " +
      "in 7 years.";
      sources[0] = "Mark Twain";
      quotes[1] = "Everybody is ignorant. Only on different subjects.";
      sources[1] = "Will Rogers";
      quotes[2] = "They say such nice things about people at their funerals " +
      "that it makes me sad that I'm going to miss mine by just a few days.";
      sources[2] = "Garrison Keilor";
      quotes[3] = "What's another word for thesaurus?";
      sources[3] = "Steven Wright";
      quotes[4] = "When people fear the government, you have tyranny. When the government fears the people, you have freedom";
      sources[4] = "Thomas Jefferson";
      quotes[5] = "We must all hang together, or assuredly we shall all hang separately";
      sources[5] = "Benjamin Franklin";
      quotes[6] = "Above all, we must realize that no arsenal, or no weapon in the arsenals of the world, is so formidable as the will and moral courage of free men and women. It is a weapon our adversaries in today's world do not have.";
      sources[6] = "Ronald Reagan";
      quotes[7] = "Freedom is never more than one generation away from extinction. We didn't pass it to our children in the bloodstream. It must be fought for, protected, and handed on for them to do the same.";
      sources[7] = "Ronald Reagan";
      quotes[8] = "How do you tell a communist? Well, it's someone who reads Marx and Lenin. And how do you tell an anti-Communist? It's someone who understands Marx and Lenin.";
      sources[8] = "Ronald Reagan";
      quotes[9] = "When they call the roll in the Senate, the Senators do not know whether to answer Present or Not guilty.";
      sources[9] = "Theodore Roosevelt";
      quotes[10] = "Our safety, our liberty, depends upon preserving the constitution of the United States as our fathers made it inviolate. The people of the United States are the rightful masters of both Congress and the courts - not to overthrow the Constitution, but to overthrow the men who pervert the Constitution";
      sources[10] = "Abraham Lincoln";
      quotes[11] = "The democracy will cease to exist when you take away from those who are willing to work, and give to those who would not";
      sources[11] = "Thomas Jefferson";
      quotes[12]= "The Constitution is not an instrument for the government to restrain the people, it is an instrument for the people to restrain the government.";
      sources[12] = "Patrick Henry";
      quotes[13] = "Government is not reason; it is not eloquent; it is force. Like fire, it is a dangerous servant and a fearful master.";
      sources[13] = "George Washington";
 // Get a random index into the arrays
      i = Math.floor(Math.random() * quotes.length);
  
      // Write out the quote as HTML
      
      document.write("<dt>" + "\"<i>" + quotes[i] + "</i>\"\n");
      document.write("<dd>" + "- " + sources[i] + "\n");
      document.write("<dl>\n");
    }