function random_text()
{};
var random_text = new random_text();
// Set the number of text strings to zero to start
var number = 0;
// Incremental list of all possible Text
random_text[number++] = "Aluminum, glass, and paper are the three materials most easy to recycle."
random_text[number++] = "It takes glass one million years to decompose, which means it can be recycled an infinite amount of times."
random_text[number++] = "Plastic bags and other plastic rubbish thrown into the ocean kill as many as a million sea creatures every year."
random_text[number++] = "The energy saved by recycling 1 bottle will power a computer for 25 minutes."
random_text[number++] = "Approximately 70 percent of the Earth is covered with water. Only 1 percent of the water is drinkable."
random_text[number++] = "It is estimated that the last remaining rainforests could be consumed in less than 40 years."
random_text[number++] = "Rainforests are being destroyed because the value of rainforest land is perceived as only the value of its timber."
random_text[number++] = "137 plant, animal and insect species are being lost every single day due to rainforest deforestation."
random_text[number++] = "The environment could benefit more if you go vegan than if you buy an eco-friendly car."
random_text[number++] = "Every ton of recycled office paper saves 380 gallons of oil."
random_text[number++] = "By carpooling or taking public transportation less carbon monoxide and greenhouse gases are released into our air."
// Create a random number with limits based on the number
// of possible random text strings
var random_number = Math.floor(Math.random() * number);
// Write out the random text to the browser
document.write(random_text[random_number]);
