﻿// ==============================================
// 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.
// Rememberto increment the Quotation[x] index!
// If you need a double-quotation mark in the script, precede it with a backslach.

Quotation[0] = "There are twelve endangered plant species at Somme Prairie Grove, but we do not want to put their names on the internet -- for their safety.";
Quotation[1] = "When the restoration started in 1981, parts of Somme Prairie Grove were a \"vehicle playground\" with deep ruts making some parts like a plowed field.";
Quotation[2] = "Controlled burns consume the dried grasses of about one half of Somme Prairie Grove every year. These burns are crucial to the recovering health of this ancient ecosystem.";
Quotation[3] = "The commonest breeding bird of Somme Prairie Grove is the indigo bunting.";
Quotation[4] = "After 25 years of work by hundreds of volunteers, about one half of Somme Prairie Grove free from invasive brush and weeds.";
Quotation[5] = "Three raptors regularly breed at Somme Prairie Grove: Cooper's hawk, red-tailed hawk, and great-horned owl.";
Quotation[6] = "Coyotes are an important part of the ecosystem. In their absence, smaller predators like raccoons, foxes and opossums become so common that some species of frogs, snakes and ground-nesting birds can be eliminated.";
Quotation[7] = "Both the grasslands and the oak woodlands are dependent on regular burns for good health.";
Quotation[8] = "Holes in dead trees are an important part of the ecosystem -- for woodpeckers, chickadees, nuthatches, crested flycatchers, house wrens and flying squirrels.";
Quotation[9] = "Six species of oak trees can be found at Somme Prairie Grove: bur, scarlet, white, swamp white, red, and chinquapin.";
Quotation[10] = "At Somme Prairie Grove, an uncommon butterfly -- the giant swallowtail -- feeds on two uncommon shrubs -- wafer ash and prickly ash.";
Quotation[11] = "Somme rhymes with mom, pomme, and CD ROM!";


// ======================================
// 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();