function trivia()
{
//6
var ranNum= Math.round(Math.random() * 6);
if (ranNum == 0){document.write('"Catfish have 100,000 taste buds."'); } // Monday
if (ranNum == 1){document.write('"Certain frogs can be frozen solid then thawed and continue living."'); } // Tuesday
if (ranNum == 2){document.write('"Chameleons can move their eyes in two different directions at the same time."'); } // Wednesday
if (ranNum == 3){document.write('"Dragonflies are one of the fastest insects, flying 50 to 60 mph."'); } // Thursday
if (ranNum == 4){document.write('"Hippos have killed more than 400 people in Africa - more than any other wild animal."'); } // Friday
if (ranNum == 5){document.write('"In its entire lifetime, the average worker bee produces 1/12th teaspoon of honey."'); } // Saturday
if (ranNum == 6){document.write('"Infant beavers are called kittens."'); } // Sunday
}
