function makeQuote() {
	var quote = new Array();
quote[0] = "Albert Einstien|The whole of science is nothing more than a refinement of everyday thinking." ;
quote[1] = "Albert Einstien|The important thing is not to stop questioning. Curiosity has its own reason for existing." ;
quote[2] = "Albert Einstien|The most beautiful thing we can experience is the mysterious. It is the source of all true art and all science. He to whom this emotion is a stranger, who can no longer pause to wonder and stand rapt in awe, is as good as dead..." ;
quote[3] = "Blaise Pascal|For after all what is man in nature? A nothing in relation to infinity, all in relation to nothing, a central point between nothing and all and infinitely far from understanding either....";
quote[4] = "Rabindranth Tagore|The butterfly counts not months but moments, and has time enough.";
quote[5] = "Emperor Yu of China 1,600 BCI|To protect your rivers, protect your mountains.";
quote[6] = "Vi Hilbert, Lummi Tribal member, Impressions of the North Cascades|We always considered the river a living and a home. It's our highway. It's home for the spirits that we access. It's important as a pantry, a highway, and as a living being.";
quote[7] = "Kahil Gibran, Lebanese writer, philosopher and poet|The subtlest beauties in our life are unseen and unheard.";
quote[8] = "Maya Angelou|A bird does not sing because it has an answer, it sings because it has a song.";   
quote[9] = "Thawat Vichaidiji, Thai water official|We should no longer think of water as a gift of nature, but an industry which needs investment.";
quote[10] = "Anonymous|If there is Magic on this planet, it is contained in Water.";
quote[11] = "Jackson Gillman, the Standup Chameleon|We pledge allegiance to the Web of Life of which we're each a strand and to our planet Earth on which we stand one ecosystem under the sun interdependent with diversity and tolerance for all.";
quote[12] = "Tennyson|Knowledge comes, but wisdom lingers.";
quote[13] = "Martin Luther King|The ultimate measure of a man is not where he stands in moments of comfort and convenience, but where he stands at times of challenge and controversy.";
quote[14] = "J. R. R. Tolkien, The Hobbit|This thing all things devours; birds, beast, trees, flowers; gnaws iron, bites steel, grinds hard stones to meal, slays kings, ruins town and beats high mountains down. (what is it? Time)";
quote[15] = "Albert Einstein|Not everything that can be counted counts, and not everything that counts can be counted.";
quote[16] = "Harley Shaw, biologist|In sustaining our image of objectivity, we as biologists pretend that we study wild animals. In reality, we inevitably study an interface between ourselves and other species.";
quote[17] = "Neils Bohr, Physicist|Prediction is very difficult, especially when you are talking about the future.";
quote[18] = "Cesar Chavez|Si, se pueda (yes, you can)";
quote[19] = "Tanaka Shozo|The care of rivers is not a question of rivers, but of the human heart.";
quote[20] = "J. R. R. Tolkien|The rule of no realm is mine, but all worthy things that are in peril as the world now stands, those are my care.";
quote[21] = "Margaret Mead|Never doubt that a small group of thoughtful, committed citizens can change the world.  Indeed, it's the only thing that ever has.";
quote[22] = "Rachael Carson, A Sense of Wonder (1956)|The lasting pleasures of contact with the natural world are not reserved for a scientist but are available to anyone who will place himself under the influence of earth, sea and sky, and their amazing life.";

	r=Math.round(Math.random()*(quote.length-1));
	temp = quote[r].split('|');
	quote_text  = "<i>"+temp[1]+'</i> - '+ temp[0]+ '&nbsp;';
	return quote_text;

}

//////;//document.write(makeQuote());
