function random_text()
{};
var 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++] = "<p>Warning signs of drywood termites include discarded swarmer wings, gritty sawdust-like fecal pellets, and hollow wood.</p>"
random_text[number++] = "<p>20% of homeowners surveyed said termites were their main pest concern. </p>"
random_text[number++] = "<p>Wasps feed on sweet liquids, and some that have been feeding on fermenting juice have been observed, eventually, to get drunk and pass out. </p>"
random_text[number++] = "<p>Bees must collect the nectar from 2,000 flowers to make 1 tablespoon of honey. </p>"
random_text[number++] = "<p>Merchant grain beetles prefer to attack boxes of cake mix, cereal, macaroni and cookies rather than grain, as their name implies. </p>"
random_text[number++] = "<p>There are about 500,000 species of beetles. </p>"
random_text[number++] = "<p>In many species of wasps, fertilized eggs become females, while unfertilized eggs become males. </p>"
random_text[number++] = "<p>Spider silk from some House Spiders has been used to help stop bleeding from wounds, by placing a mat of silk over the wound </p>"
random_text[number++] = "<p>Cockroach allergens are derived from secretions, excretions, dead bodies, and associated debris. </p>"
random_text[number++] = "<p>Men claim their number one pest concern to be termites (24%) while women put spiders as their number one pest concern (16%). </p>"
random_text[number++] = "<p>Detectable levels of cockroach allergens can be found in at least one location in 63% of all U.S. homes. </p>"
random_text[number++] = "<p>Fleas can survive for months without feeding. </p>"
random_text[number++] = "<p>An estimated 15% of all new homes have serious structural defects and damages, which may include termite damage. </p>"
random_text[number++] = "<p>House crickets can damage silk, woolens, paper, fruits and vegetables. </p>"
random_text[number++] = "<p>Male silk moths can detect female moths up to several miles away. </p>"
random_text[number++] = "<p>Most cockroach species live in the tropics but they can make their home all over the world, including the North and South Poles. </p>"
random_text[number++] = "<p>Cockroaches are believed to have originated more than 280 million years ago, in the Carboniferous era. </p>"
random_text[number++] = "<p>Three percent of the American population is allergic to a stinging insect's venom. </p>"

// Create a random number with limits based on the number
// of possible random text strings
var random_number = Math.floor(Math.random() * number);

//Add to page: <script type="text/javascript">document.write(random_text[random_number]);/script>