// RANDOM TEXT
function random_text()
{};
var random_text = new random_text();
var number = 0;

random_text[number++] = "<p>Crocodiles have no sweat glands. They lose heat through their mouths, and sometimes pant like dogs to keep cool.</p>"
random_text[number++] = "<p>Alligators grow nearly a foot a year until sexual maturity.</p>"
random_text[number++] = "<p>Alligators can bite with 2,125 pounds of jaw pressure. Compare that with a lion at 940 pounds.</p>"
random_text[number++] = "<p>Unlike an alligator, a crocodile's two large lower teeth are visible when its jaw is closed.</p>"
random_text[number++] = "<p>A baby crocodile breaks out of its egg with a special hard tip on its snout. </p>"
random_text[number++] = "<p>The Saltwater crocodile is the largest known living reptile. </p>"
random_text[number++] = "<p>Crocodilian have the most highly developed heart of any animal.</p>"









var random_number = Math.floor(Math.random() * number);

document.write(random_text[random_number]);
