// ==============================================
// Copyright 2004 by CodeLifter.com
// Free for all; but please leave in this header.
// ==============================================

var Quotation=new Array() // do not change this!

// Set up the quotations to be shown, below.
// To add more quotations, continue with the
// pattern, adding to the array.  Remember
// to increment the Quotation[x] index!

Quotation[0] = "We abuse land because we regard it as a commodity belonging to us.  When we see land as a community to which we belong, we may begin to use it with love and respect.  Aldo Leopold, A Sand County Almanac";
Quotation[1] = "A thing is right when it tends to preserve the integrity, stability and beauty of the biotic community. It is wrong when it tends otherwise. - Aldo Leopold";
Quotation[2] = "The last word in ignorance is the man who says of an animal or plant: What good is it?.... if biotic, in the course of aeons has built something that we like but do not understand, then but a fool would discard seemingly useless parts? To keep every cog and wheel is the first precaution of intelligent tinkering. - Aldo Leopold";
Quotation[3] = "It isnt pollution thats harming the environment. Its the impurities in our air and water that are doing it. — Dan Quayle, former US vice president";
Quotation[4] = "We could have saved the Earth but we were too damned cheap.  ~Kurt Vonnegut, Jr.";
Quotation[5] = "We shall never achieve harmony with land, any more than we shall achieve absolute justice or liberty for people. In these higher aspirations, the important thing is not to achieve but to strive. - Aldo Leopold";
Quotation[6] = "The universe is not required to be in perfect harmony with human ambition.  Carl Sagan";
Quotation[7] = "We shall require a substantially new manner of thinking if mankind is to survive.  Albert Einstein";
Quotation[8] = "Love the river's \"beauty\", but live on a hill.";
Quotation[9] = "Invention is the mother of too many useless toys.";
Quotation[10] = "We cannot solve the problems that we have created with the same thinking that created them. - Albert Einstein"
Quotation[11] = "\"I want to make it clear, if there is ever a conflict (between environmental quality and economic growth), I will go for beauty, clean air, water, and landscape.\" - Jimmy Carter, quoted in the New York Times, September 19, 1976";
Quotation[12] = "For the first time in the history of the world, every human being is now subjected to contact with dangerous chemicals, from the moment of conception until death.  - Rachel Carson, Silent Spring, 1962";
Quotation[13] = "Water and air, the two essential fluids on which all life depends, have become global garbage cans. — Jacques Cousteau";
Quotation[14] = "Only when the last tree has been cut down, Only when the last river has been poisoned, Only when the last fish has been caught, Only then will you find that money cannot be eaten. — Cree Indian Prophecy";
Quotation[15] = "Considering the whole span of earthly time... Only within the moment of time represented by the present century has one species – man – acquired significant power to alter the nature of his world. — Rachel Carson, Silent Spring";
Quotation[16] = "Earth provides enough to satisfy every man\'s need, but not every man's greed. - Mahatma Gandhi";
Quotation[17] = "To waste, to destroy, our natural resources, to skin and exhaust the land instead of using it so as to increase its usefulness, will result in undermining in the days of our children the very prosperity which we ought by right to hand down to them. — Theodore Roosevelt";
Quotation[18] = "Sometimes I wonder whether the world is being run by smart people who are putting us on, or by imbeciles who really mean it. — Mark Twain";
Quotation[19] =  "Forestry is the Preservation of Forests by Wise Use. - Theodore Roosevelt";
Quotation[20] =  "There is a sufficiency in the world for man\'s need but not for man\'s greed.  Mohandas K. Gandhi";
Quotation[21] =  "We never know the worth of water till the well is dry.  ~Thomas Fuller, Gnomologia, 1732";
Quotation[22] =  "We abuse land because we regard it as a commodity belonging to us.  When we see land as a community to which we belong, we may begin to use it with love and respect.  ~Aldo Leopold, A Sand County Almanac";
Quotation[23] =  "Economic advance is not the same thing as human progress.  ~John Clapham, A Concise Economic History of Britain, 1957";
Quotation[24] =  "For a successful technology, reality must take precedence over public relations, for Nature cannot be fooled.  ~Richard P. Feynman";
Quotation[25] =  "You must be the change you wish to see in the world. — Mahatma Gandhi";

// ======================================
// Do not change anything below this line
// ======================================
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();
