function setQuote() {
	var quotes = new Array(
		"\"If a man does not keep pace with his companions, perhaps it is because he hears a different drummer.\" - <a href=\"http://www.walden.org\">Henry David Thoreau</a>",
		"\"If two things look the same, look for differences. If they look different, look for similarities.\" - John Cardinal",
		"\"In theory, there is no difference. In practice, there is.\" - Anonymous",
		"\"A bird does not sing because it has an answer. It sings because it has a song.\" - Chinese Proverb",
		"\"The government is unresponsive to the needs of the little man. Under 5'7\", it is impossible to get your congressman on the phone.\" - Woody Allen",
		"\"Facts are stubborn things; and whatever may be our wishes, our inclinations, or the dictates of our passion, they cannot alter the state of facts and evidence.\" - John Adams",
		"\"People who like this sort of thing will find this the sort of thing they like.\" - Abraham Lincoln",
		"\"Whenever I hear anyone arguing for slavery, I feel a strong impulse to see it tried on him personally.\" - Abraham Lincoln",
		"\"Can we have everything louder than everything else?\" - John Lennon",
		"\"Charity sees the need not the cause.\" - German Proverb",
		"\"You cannot help men permanently by doing for them what they could and should do for themselves.\" - William J. H. Boetcker",
		"\"No one goes there nowadays, it's too crowded.\" - Yogi Berra",
		"\"Life's not a paragraph And death i think is no parenthesis\" - e.e. cummings",
		"\"No man ever believes that the Bible means what it says: He is always convinced that it says what he means.\" - George Bernard Shaw",
		"last slot - not used");

	var quoteIndex=Math.round(Math.random()*(quotes.length-2));

	var quoteParagraph = document.getElementById('sub-title');
	quoteParagraph.innerHTML = quotes[quoteIndex];
}

addLoadListener( setQuote );

