// ==============================================
// Copyright 2004 by CodeLifter.com
// Free for all; but please leave in this header.
// ==============================================

var Quotation=new Array() // do not change this!

// Set up the quotations to be shown, below.
// To add more quotations, continue with the
// pattern, adding to the array.  Remember
// to increment the Quotation[x] index!

Quotation[0] = "A chicken will lay bigger and stronger eggs if you change the lighting in such a way as to make them think a day is 28 hours long!";
Quotation[1] = "The chicken can travel up to 9 miles per hour.";
Quotation[2] = "There seven distinctive types of combs on chickens: rose, strawberry, single, cushion, buttercup, pea, and V-shaped.";
Quotation[3] = "The largest chicken egg on record was nearly 12 oz., measuring 12 1/4\"\ around.";
Quotation[4] = "The greatest number of yolks in one chicken egg is nine.";
Quotation[5] = "The record for laying the most eggs: seven in one day.";
Quotation[6] = "There are more chickens in the world than any other domesticated bird. More than one chicken for every human on the face of this earth.";
Quotation[7] = "The longest distance flown by any chicken is 301 1/2 feet. (as the crow flies)";
Quotation[8] = "Did you know that some breeds of chickens can lay colored eggs? Sure enough, the Ameraucana and Araucana can lay eggs colored in shades of green or blue, depending on the breed and it's ancestry.";
Quotation[9] = "In 1994, 73,866 million eggs were produced in the U.S.";
Quotation[10] = "China not only has the most people in the world, but also has the most chickens with over 3,000,000,000 of them.";
Quotation[11] = "The term 'Chicken Pox' didn't come from people believing that they came from chickens, it came from the Old English term 'gican pox' which means the itching pox.";
Quotation[12] = "Alektorophobia is the term used for fear of chickens.";
Quotation[13] = "Laid head to claw, KFC chickens consumed worldwide would stretch some 275,094 miles. They would circle the Earth at the equator 11 times or stretch from the Earth approximately 50,094 miles past the moon.";
Quotation[14] = "There are approximately 450 million chickens in the United States.";
Quotation[15] = "Chickens make sounds with actual meaning. They give different alarm calls when threatened by different predators.";
Quotation[16] = "A cockerel will attack anything that he thinks will harm the hens (that includes humans). Their spurs (located at the back of their leg) can cause a very painful puncture wound.";
Quotation[17] = "If a cockerel is not present in a flock of hens, a hen will often take the role, stop laying, and begin to crow.";
Quotation[18] = "In Gainesville, Georgia, the chicken capital of the world, it is illegal to eat chicken with a fork!";
Quotation[19] = "McDonald's in india doesn't serve beef... only chicken, mutton and fish.";
Quotation[20] = "The closest living relative of the t-rex is the chicken which makes the Alektorophobia (Fear of chickens) slightly more plausible.";
Quotation[21] = "The waste produced by one chicken in its lifetime can supply enough electricity to run a 100 watt bulb for five hours.";
Quotation[22] = "The longest recorded flight of a chicken is thirteen seconds.";
Quotation[23] = "There are more chickens than people in the world.";
Quotation[24] = "On average, a hen lays 300 eggs per year.";
Quotation[25] = "You can literally hypnotize a chicken by holding it and drawing a line in the dirt over and over. The chicken will stay still right there as long as you do this.";
Quotation[26] = "Nine egg yolks have been found in one chicken egg.";
Quotation[27] = "A mother hen turns her egg approximately 50 times in a day. This is so the yolk does not stick to the shell.";
Quotation[28] = "To produce a dozen eggs, a hen has to eat about four pounds of feed.";
Quotation[29] = "The largest chicken egg ever laid weighed a pound and had a double yolk and shell.";
Quotation[30] = "A chicken with red earlobes will produce brown eggs, and a chicken with white earlobes will produce white eggs.";
Quotation[31] = "A chicken is 75% water.";
Quotation[32] = "In the U.S., approximately 46% of the chicken that is eaten by people comes from restaurants or other food outlets.";
Quotation[33] = "Hens will produce larger eggs as they grow older.";
Quotation[34] = "A chicken loses its feathers when it becomes stressed.";
Quotation[35] = "A chicken once had its head cut off and survived for over eighteen months, headless.";
Quotation[36] = "According to National Geographic, scientists have settled the old dispute over which came first... the chicken or the egg. <br />They say that reptiles were laying eggs thousands of years before chickens appeared, and the first chicken came from an egg laid by a bird that was not quite a chicken. <br />That seems to answer the question... the egg came first.";
Quotation[37] = "Chimney's used to be cleaned by dropping live chickens down them";

// ======================================
// Do not change anything below this line
// ======================================
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();
