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

var Quotation=new Array()

// 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] = "<p class=\"quote_author2\">Orion (our readers tell us):</p><p class=\"quote_body\">The only environmental magazine that deals with ethics and values.</p>";

Quotation[1] = "<p class=\"quote_author2\">Orion (our readers tell us):</p><p class=\"quote_body\">Balanced and well-rounded &mdash; the artistic and philosophical side to the environmental movement.</p>";

Quotation[2] = "<p class=\"quote_author2\">Orion (our readers tell us):</p><p class=\"quote_body\">Exists at the intersection where real change can occur, delving into the connections between nature, science, justice, art, and politics.</p>";

Quotation[3] = "<p class=\"quote_author2\">Orion (our readers tell us):</p><p class=\"quote_body\">Serious thinking on the deeper connection between the environment and social and political issues.</p>";

Quotation[4] = "<p class=\"quote_author2\">Orion (our readers tell us):</p><p class=\"quote_body\">Takes major causes &mdash; the environment, political, spiritual &mdash; and folds them into one, human cause.</p>";

//Quotation[0] = "<p class=\"quote_body\">The question is not what you look at&mdash;but how you look and whether you see.</p><p class=\"quote_author\">Thoreau</p>";

//Quotation[1] = "<p class=\"quote_body\"><em>Orion</em>: sacred <em>and</em> subversive.</p><p class=\"quote_author\">Barry Lopez</p>";

//Quotation[2] = "<p class=\"quote_body\">Orion sheds unwholesome dews...</p><p class=\"quote_author\">Alexander Pope</p>";

//Quotation[3] = "<p class=\"quote_body\">Orion is the single most vital gathering place for art, science, spiritual inquiry, and conservation efforts in North America.</p><p class=\"quote_author\">Scott Russell Sanders</p>";

//Quotation[4] = "<p class=\"quote_body\">We dissect nature along lines laid down by our native language.</p><p class=\"quote_author\">Benjamin Whorf</p>";

//Quotation[5] = "<p class=\"quote_body\">Those who dwell...among the beauties and mysteries of the earth are never alone or weary of life.</p><p class=\"quote_author\">Rachel Carson</p>";

//Quotation[6] = "<p class=\"quote_body\">All of nature fascinates me, all of nature. You ever watch ants?</p><p class=\"quote_author\">Ellen DeGeneres</p>";

//Quotation[7] = "<p class=\"quote_body\">America\'s finest environmental magazine.</p><p class=\"quote_author\">Boston Globe</p>";

//Quotation[8] = "<p class=\"quote_body\">The views of nature held by any people determine all its institutions.</p><p class=\"quote_author\">Emerson</p>";

//Quotation[9] = "<p class=\"quote_body\">There are few real boundaries in nature.</p><p class=\"quote_author\">Rebecca Solnit</p>";

//Quotation[10] = "<p class=\"quote_body\">One impulse from a vernal wood May teach you more of man, <br />Of moral evil and of good, Than all the sages can.</p><p class=\"quote_author\">William Wordsworth</p>";

//Quotation[11] = "<p class=\"quote_body\">Let creation reveal its secrets by and by...</p><p class=\"quote_author\">Jackson Browne</p>";

//Quotation[12] = "<p class=\"quote_body\">Look deep into nature and then you will understand everything better.</p><p class=\"quote_author\">Albert Einstein</p>";

//Quotation[13] = "<p class=\"quote_body\">Few are altogether deaf to the preaching of pine trees.</p><p class=\"quote_author\">John Muir</p>";

//Quotation[14] = "<p class=\"quote_body\">Despair is a luxury. If I despair I can drive a Yukon and watch bad television. Despair makes no demand upon us; hope demands everything.</p><p class=\"quote_author\">Rebecca Solnit</p>";

var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();

