


var r_text = new Array ();
r_text[0] = "<br><br>What has four wheels and flys?  A garbage truck!";
r_text[1] = "<br><br>Termites cause more damage than tornadoes, hail storms, wind storms, and hurricanes  combined.";
r_text[2] = "<br><br>Termites cause over $100 million dollars in damage every year in Hawaii";
r_text[3] = "<br><br>What's smarter than a talking parrot? A spelling bee.";
r_text[4] = "<br><br>A cockroach's head will live and respond for at least 12 hours after the animal has been decapitated.";
r_text[5] = "<br><br>Termites never stop working and eating. They work 24 hours a day.";
r_text[6] = "<br><br>Beetles are one of the most popular pets in Japan and can be bought in many department stores!";
r_text[7] = "<br><br>Some wood beetles can emerge from wood where they live after as long as 40 years";
r_text[8] = "<br><br>One Species of moth lives entirely on cow tears.";
r_text[9] = "<br><br>Flies can taste with their feet";
r_text[10] = "<br><br>Mosquitoes kill about 2 million people a year.";
r_text[11] = "<br><br>The average human will eat 8 spiders while asleep in their lifetime.";
r_text[12] = "<br><br>Some termites queens are reported to live for 50 years, although the average age is nearer to 15.";
r_text[13] = "The mosquito's visual picture is an infrared view produced by its prey's body temperature….Like the Predator.";
r_text[14] = "<br><br>You can buy insurance for many sources of home damage, but not for termites.";
r_text[15] = "<br><br>Ants have two stomachs one for them and one to feed others.";



var Q = r_text.length;
var whichr_text=Math.round(Math.random()*(Q-1));



function showr_text(){document.write(r_text[whichr_text]).innerHTML;
}

showr_text();


