// JavaScript Document

function random_text()
{};
var random_text = new random_text();
// Set the number of text strings to zero to start
var number = 0;
// Modify ist below of all possible text strings
//
// USING QUOTES??? when adding personal quotes, DO NOT use the normal, straight quotes - they are reserved for the code.
// instead, use the following curly quotes for left and right.
// left ? or &ldquo;
// right ? or &rdquo;
//
random_text[number++] = "Quality of life is a key issue for companies deciding where to locate as it helps to attract and retain employees."
random_text[number++] = "Tens of thousands of wildlife habitat and farmland are lost to development each year."
random_text[number++] = "50% of the state's wetlands have been converted to other uses."
random_text[number++] = "Virginia is missing out on federal, local and private dollars that could be obtained through matching programs because the state currently lacks the funds needed to qualify."
random_text[number++] = "Virginia voters have twice demonstrated their strong support for increased funding by decisively approving statewide bond referenda to expand our state parks system and natural areas - by a margin of 67% in 1992 and 69% in 2002."
random_text[number++] = "Polls consistently confirm that Virginians are committed to protecting the state's land, air and water. In a recent poll, two-thirds of Virginia voters said they would be willing to pay a little extra each month to protect water quality, open space, fisheries and wildlife, and recreational areas."
random_text[number++] = "...it shall be the Commonwealth's policy to protect its atmosphere, lands and waters from pollution, impairment or destruction for the benefit, enjoyment and general welfare of the people of the Commonwealth. -Article XI, Virginia Constitution"
random_text[number++] = "&ldquo;When a company decides to relocate to Virginia, one of the things they take into consideration is, 'Is this a good place to raise a family?'&rdquo; -Kim Tingley, Past President, Homebuilders Association of Virginia"
random_text[number++] = "&ldquo;Clearly, Virginia's natural resources not only contribute mightily to the character of our state but also support industries of great economic importance... The longer we wait to act the steeper the cost of protecting our natural resources will become.&rdquo; -Charles G. McDaniel, President, Hilldrup Moving and Storage"
random_text[number++] = "&ldquo;...In light of Virginians' pride in our rich natural heritage, our state's commitment to funding natural resource protection is hardly to be envied. This environmental neglect is clearly out of step with the priorities of Virginians. When given a chance to decide on increased funding for natural resource protection, Virginia voters have responded with a passion.&rdquo; -Michael Lipford, Executive Director, The Nature Conservancy"
// Create a random number with limits based on the number
// of possible random text strings
var random_number = Math.floor(Math.random() * number);