// Function that return a number between 0 and "nums - 1"
function getRandom(nums)
{
var ranNum= Math.round(Math.random()*nums)
;
return ranNum;
}

var trivia = new Array ();
trivia[0] = "Coca-Cola was originally green.";
trivia[1] = "Men can read smaller print than women; women can hear better. ";
trivia[2] = "In 1987 American Airlines saved $40,000 by eliminating one olive from each salad served in first class.";
trivia[3] = "Honey is the only food that does not spoil.";
trivia[4] = "Hummingbirds are the only birds that can fly backwards.";
trivia[5] = "Ostriches stick their heads in the sand to look for water.";
trivia[6] = "In the Caribbean there are oysters that can climb trees.";
trivia[7] = "Polar bears are left-handed.";
trivia[8] = "The youngest pope was eleven years old.";
trivia[9] = "Proportional to their weight, men are stronger than horses.";
trivia[10] = "Your nose and ears never stop growing. ";
trivia[11] = "In Japan some watermelons are grown square, because they stack better in tiny refridgerators.";
trivia[12] = "It is possible to lead a cow upstairs but not downstairs.";
trivia[13] = "Men get hiccups more often than woman.";
trivia[14] = "Arachibutyrophobia is a fear of peanut butter sticking to the roof of the mouth.";
trivia[15] = "By the law of averages you are more likely to be killed by a flying champagne cork than by a poisonous spider.";
trivia[16] = "In the United States a house catches fire every 45 seconds.";
trivia[17] = "On average women blink nearly twice as much as men.";
trivia[18] = "A red London bus can be seen in the background of one of the battle scenes from the Arthurian legend film, Excalibur.";
trivia[19] = "Orginally Susan Weaver, Sigourney Weaver picked out her unusual new name from a character in the novel, The Great Gatsby.";
trivia[20] = "Artist Pablo Picasso appears in a crowd scene in Jean Cocteau's 1962 film, The Testament of Orpheus.";
trivia[21] = "The temperature in space is around -270 degrees celcius.";
trivia[22] = "Mosquito repellents don't repel. They hide you. The spray blocks the mosquito's sensors so they don't know you're there.";
trivia[23] = "The liquid inside young coconuts can be used as substitute for blood plasma.";
trivia[24] = "You burn more calories sleeping than you do watching television.";
trivia[25] = "The king of hearts is the only king without a mustache.";
trivia[26] = "The plastic things on the end of shoelaces are called aglets.";
trivia[27] = "Walt Disney was afraid of mice.";
trivia[28] = "A duck's quack doesn't echo and no one knows why.";
trivia[29] = "Butterflies taste with their feet.";
trivia[30] = "Elephants are the only animals that can't jump.";
trivia[31] = "It's physically impossible for you to lick your elbow. Almost everyone who reads this will try to lick their elbow.";
trivia[32] = "A snail can sleep for three years.";
trivia[33] = "One tequila, two tequila, three tequila, floor.";
trivia[34] = "Don't sweat the petty things and don't pet the sweaty things.";
trivia[35] = "What do you do when you see an endangered animal eating an endangered plant?";
trivia[36] = "Dogs and wolves yawn as a sign of contentment.";
trivia[37] = "Two dogs survived the sinking of Titanic, they escaped on early lifeboats carrying so few people that no one objected.";
trivia[38] = "Cats see so well in the dark because their eyes actually reflect light like miniature flashlights.";
trivia[39] = "In Gainesville, Georgia, it is illegal to eat chicken with a fork. And in Florida it is illegal to get a fish drunk.";
trivia[40] = "Chimney's used to be cleaned by dropping live chickens down them.";
trivia[41] = "You can use pine cones to forecast the weather: The scales will close when rain is on the way.";
trivia[42] = "On the island of Jersey it's against the law for a man to knit during the fishing season.";
trivia[43] = "In Britain in 1845 attempting to commit suicide was a capital offense. Offenders could be hanged for trying.";
trivia[44] = "A lightning strike in the Democratic Republic of Congo killed all 11 members of one soccer team while leaving the opposing team in the match untouched.";

var i = Math.floor(45*Math.random())

document.write(trivia[i]);
