// JavaScript Document
function rotateEvery(sec)
{
	var Quotation=new Array()

	// QUOTATIONS
	Quotation[0] = 'There are almost 5000 known species of frogs';
	Quotation[1] = 'Frogs range in size from less than half an inch to nearly a foot long';
	Quotation[2] = 'Scientists consider frogs a \"biological indicator\" of the health of the Earth\'s ecosystems';
	Quotation[3] = 'The golden poison frog is considered the most toxic animal in the world';
	Quotation[4] = 'The golden poison frog skin contains enough poison to kill 20,000 mice or 100 adult humans';
	Quotation[5] = 'The largest known species of frog is the Goliath frog';
	Quotation[6] = 'Considered a food source by native tribes, an adult Goliath frog can weigh as much as a housecat (7 lbs)!';
	Quotation[7] = 'The female gastric-brooding frog reproduces by swallowing eggs and incubating them in her stomach!';
	Quotation[8] = 'The gastric-brooding frog began to disappear shortly after its discovery in 1972. It is feared to be extinct.';
	Quotation[9] = 'A group of frogs is called an army';
	Quotation[10] = 'A group of toads is called a knot';
	Quotation[11] = 'The oldest known frog fossil is from a proto-frog that lived 250 million years ago';
	Quotation[12] = 'The purple frog is so unique that it has prompted the creation of a new frog \"family\"';
	Quotation[13] = 'A honey bee can fly 15 mph';
	Quotation[14] = 'A queen bee can lay 1500 eggs a day';
	Quotation[15] = 'Male bees are evicted from the hive every fall';
	Quotation[16] = 'A worker bee only lives for 4 weeks in the summer';
	Quotation[17] = 'A Honey Bee collects one eyedropper worth of nectar on one flight';
	Quotation[18] = 'A hive of honey bees flies a combined 55,000 miles to produce one pound of honey';
	Quotation[19] = 'To fly around the world a honey bee only needs 2 tablespoons of honey';
	Quotation[20] = 'Two hives can produce 150 pounds of honey';
	Quotation[21] = 'Honey bees must visit 2 million flowers to produce one pound of honey';
	Quotation[22] = 'The average worker bee produces 1 1\/2 teaspoons of honey in her lifetime';
	Quotation[23] = 'Honey bees communicate through interpretive dance';
	Quotation[24] = 'A worker bee visits 50-100 flowers per trip';
	Quotation[25] = 'The queen may lay 600-800 or even 1,500 eggs each day during her 3 or 4 year lifetime';
	Quotation[26] = 'A populous colony may contain 40,000 to 60,000 bees during the late spring or early summer';
	Quotation[27] = 'The brain of a worker honey bee is about a cubic millimeter but has the densest neuropile tissue of any animal';
	Quotation[28] = 'Honey is 80% sugar and 20% water';
	Quotation[29] = 'Honey was used to embalm the body of Alexander the Great';
	Quotation[30] = 'The queen honey bee can mate with up to 17 drones over a 1-2 day period of mating flights';
	Quotation[31] = 'Mankind is having such an impact on Earth, that scientists are stating it is entering a new Epoch: Anthropocene';
	Quotation[32] = 'Salmon lay 500 eggs per pound';
	Quotation[33] = 'Salmon usually come back to the same stream in which they were born';
	Quotation[34] = 'A salmon\’s nest is called a Redd';
	Quotation[35] = 'The largest Pacific salmon is the Chinook';
	Quotation[36] = 'Salmon evolved with the glaciers';
	Quotation[37] = 'Salmon have existed for 100 million years';
	Quotation[38] = 'Chinook salmon do not eat when migrating to spawn';
	Quotation[39] = 'At least 2% of young salmon need to return as adults to prevent extinction';
	Quotation[40] = 'Of the 400 salmon stocks on the west coast of the U.S., 100 are already extinct';
	Quotation[41] = 'Of the 300 remaining salmon stocks on the west coast of the U.S., 200 are at risk';
	Quotation[42] = 'The longest known inland salmon trip was 2400 miles';
	Quotation[43] = 'Pacific salmon are cold water fish that thrive when the temperature is below 70 degrees Fahrenheit';
	Quotation[44] = 'An estimated 25% of coral reefs have already disappeared and two-thirds of all coral reefs are at risk today';
	Quotation[45] = 'Since 1975, more than 90% of the reefs in the Florida Keys have lost their living coral cover';
	Quotation[46] = 'Coral reefs are the most biodiverse ecosystem on Earth containing 30 of 34 known animal phyla';
	Quotation[47] = 'Coral reefs are the basis for 10% of the world\’s food diet';
	Quotation[48] = 'Corals are living animals that are now dying worldwide because of elevated ocean temperatures';
	Quotation[49] = 'Scientist predict the Great Barrier Reef will be virtually dead within 30 years';
	Quotation[50] = 'Once teaming with life, the Gulf of Mexico off the coast of Florida is now the world\’s largest dead zone';
	Quotation[51] = 'Ocean acidification caused by elevated CO2 levels, threatens to extinguish Earth\’s shellfish';

	var which = Math.round(Math.random()*(Quotation.length - 1));
	document.getElementById('textrotator').innerHTML = Quotation[which];
	
	setTimeout('rotateEvery('+sec+')', sec*1000);
}