$(document).ready(function() {
	var quote = [];
	quote[0] = "All know that the drop merges into the ocean but few know that the ocean merges into the drop. ~ Kabir, reformer, poet (late 15th century)";
	quote[1] = "Filthy water cannot be washed. ~ African proverb";
	quote[2] = "Even in the vast and mysterious reaches of the sea we are brought back to the fundamental truth that nothing lives to itself. ~ Rachel Carson";
	quote[3] = "When one tugs at a single thing in nature, he finds it attached to the rest of the world.  ~ John Muir";
	quote[4] = "It is a curious situation that the sea, from which life first arose, should now be threatened by the activities of one form of that life.  ~ Rachel Carson";
	quote[5] = "We shall require a substantially new manner of thinking if mankind is to survive.  ~ Albert Einstein";
	quote[6] = "Never doubt that a small group of thoughtful, committed citizens can change the world; indeed, it is the only thing that ever has. ~ Margaret Mead";
	quote[7] = "Never turn your back on the ocean. ~ Hawaiian saying";
	quote[8] = "Nature uses as little as possible of anything. ~ Johannes Kepler, astronomer (1571-1630)";
	quote[9] = "When one tugs at a single thing in nature, he finds it attached to the rest of the world. ~ John Muir";
	quote[10] = "The answer, my friend, is blowin' in the wind, The answer is blowin' in the wind. ~ Bob Dylan";
	quote[11] = "Fix the problem, not the blame. ~ Japanese Proverb";
	quote[12] = "I think the environment should be put in the category of our national security. Defense of our resources is just as important as defense abroad. Otherwise, what is there to defend? ~ Robert Redford";
	quote[13] = "The use of sea and air is common to all; neither can a title to the ocean belong to any people or private persons, forasmuch as neither nature nor public use and custom permit any possession therof. ~ Elizabeth I of England (1533-1603)";
	var theQuote = Math.floor(Math.random()*quote.length);
	$('#randomQuote').append(quote[theQuote]);
}); // end ready