var mess = new Array(
'<p class="sideMini">We have too long treated the natural world as an adversary rather than as a life-sustaining gift from the Almighty. If man has the genius to build, which he has, he must also have the ability and the responsibility to preserve. &nbsp;  &nbsp; &mdash; Gerald R. Ford</p>',
'<p class="sideMini">Today`s problems cannot be solved if we still think the way we thought when we created them. &nbsp; &nbsp; &mdash; Albert Einstein</p>',
'<p class="sideMini">Never doubt that a small group of thoughtful, committed citizens can change the world; indeed, it`s the only thing that ever has. &nbsp;&nbsp;  &nbsp; &nbsp; &mdash; Margaret Mead</p>',
'<p class="sideMini">The nation behaves well if it treats the natural resources as assets which it must turn over to the next generation increased, and not impaired in value. &nbsp; &nbsp; &mdash; Theodore Roosevelt</p>',
'<p class="sideMini">How glorious a greeting the sun gives the mountains!. &nbsp; &nbsp; &mdash; John Muir</p>',
'<p class="sideMini">As strenuous challenge or contemplative retreat, the parks and other units of the national lands offer welcome respite from the world, a safety valve for body and spirit. &nbsp; &nbsp; &mdash; T. H. Watkins</p>',
'<p class="sideMini">The wilderness and the idea of wilderness is one of the permanent homes of the human spirit. &nbsp; &nbsp; &mdash; Joseph Wood Krutch</p>',
'<p class="sideMini">Earth and sky, woods and fields, lakes and rivers, the mountain and the sea, are excellent schoolmasters, and teach some of us more than we can ever learn from books. &nbsp; &nbsp; &mdash; Sir John Lubbock</p>');
var max = mess.length;
var num = Math.floor((Math.random() * max));
document.writeln(mess[num]);
                    
//   You now need to update this code to specify the images or quotes that you want to use.  
//   First you need to repeat the Array code for each image as many times as necessary until   
//   the array contains as many entries as you wish to include in the random selection.
//   
//   If you are using quotes you then simply replace the HTML for each image with the 
//   text for your quotes. If you want to use this code to display a random image
//   then you need to place all of the HTML code for each of your images into
//   the entries instead. You can make just about any type of code for your page into 
//   a random selection by placing the appropriate HTML and text into the entries. 
