/*
	  $Author: Wohlstadter $
	    $Date: 2010-03-29 17:01:06 -0500 (Mon, 29 Mar 2010) $
	$Revision: 92 $
	 $HeadURL: http://svn.xp-dev.com/svn/RiverWest_Volunteer/River_des_Peres/trunk/Site/WebContent/scripts/page/index.js $
	  Subject: Page specific script.
*/

function window_onload() {
	
	externalLinks();
	
	return true;
	
}


var quote_header = new Array();
quote_header[0] = "Water";
quote_header[1] = "All";
quote_header[2] = "To";
quote_header[3] = "Water";
quote_header[4] = "We";
quote_header[5] = "All";
quote_header[6] = "The";

var quote_body = new Array();
quote_body[0] = "like religion and ideology, has the power to move millions of people. Since the very birth of human civilization, people have moved to settle close to it. People move when there is too little of it. People move when there is too much of it. People journey down it. People write, sing and dance about it. People fight over it. And all people, everywhere and every day, need it.";
quote_body[1] = "things are connected, like the blood that runs in your family. The water's murmur is the voice of my father's father.";
quote_body[2] = "the lost man, to the pioneer penetrating a new country, to the naturalist who wishes to see the wild land at its wildest, the advice is always the same -- follow a river. The river is the original forest highway. It is nature's own Wilderness Road.";
quote_body[3] = "is the driver of Nature.";
quote_body[4] = "forget that the water cycle and the life cycle are one.";
quote_body[5] = " the water that will ever be is, right now.";
quote_body[6] = " crisis of our diminishing water resources is just as severe (if less obviously immediate) as any wartime crisis we have ever faced. Our survival is just as much at stake as it was at the time of Pearl Harbor, or the Argonne, or Gettysburg, or Saratoga.";

var quote_author = new Array();
quote_author[0] = "Mikhail Gorbachev";
quote_author[1] = "Chief Seattle";
quote_author[2] = "Edwin Way Teale";
quote_author[3] = "Leonardo da Vinci";
quote_author[4] = "Jacques Cousteau";
quote_author[5] = "National Geographic, October 1993";
quote_author[6] = "Jim Wright, U.S. Representative, 1966";

var selected_index = Math.round((Math.random() * (quote_header.length-1)));

window.onload = window_onload;

function getQuoteHeader() {
	return quote_header[selected_index];
}

function getQuoteBody() {
	return quote_body[selected_index];
}

function getQuoteAuthor() {
	return quote_author[selected_index];
}
