quotes = new Array(16);
authors = new Array(16);
quotes[0] = "Research is what I'm doing when I don't know what I'm doing.";
authors[0] = "Wernher Von Braun";
quotes[1] = "Experience is the mother of science.";
authors[1] = "Henry George Bohm";
quotes[2] = "The fate of animals is of greater importance to me than the fear of appearing ridiculous; it is indissolubly connected with the fate of men.";
authors[2] = "Emile Zola";
quotes[3] = "A horse gallops with his lungs, Perseveres with his heart, And wins with his character.";
authors[3] = "Tesio";
quotes[4] = "Until one has loved an animal, part of one’s soul remains unawakened.";
authors[4] = "Anatole France";
quotes[5] = "Odd things: animals. All dogs look up to you. All cats look down to you. Only the pig looks at you as an equal.";
authors[5] = "Sir Winston Churchill";
quotes[6] = "To err is human, to forgive, canine.";
authors[6] = "Unknown";
quotes[7] = "There's no need for a piece of sculpture in a home that has a cat.";
authors[7] = "Wesley Bates";
quotes[8] = "Dogs are not our whole life, but they make our lives whole.";
authors[8] = "Roger Caras";
quotes[9] = "Thousands of years ago, cats were worshipped as gods. Cats have never forgotten this.";
authors[9] = "Unknown";
quotes[10] = "We can judge the heart of a man by his treatment of animals.";
authors[10] = "Immanual Kant";
quotes[11] = "Dogs come when they're called; cats take a message and get back to you later.";
authors[11] = "Mary Bly";
quotes[12] = "The only mystery about the cat is why it ever decided to become a domesticated animal.";
authors[12] = "Compton MacKenzie";
quotes[13] = "Why does Sea World have a seafood restaurant? I'm halfway through my fishburger and I realize, Oh my God....I could be eating a slow learner.";
authors[13] = "Lynda Montgomery";
quotes[14] = "Depend on the rabbit's foot if you will, but remember it didn't work for the rabbit.";
authors[14] = "R.E. Shay";
quotes[15] = "The essential joy of being with horses is that it brings us in contact with the rare elements of grace, beauty, spirit, and fire.";
authors[15] = "Sharon Ralls Lemon";

//calculate a random index
index = Math.floor(Math.random() * quotes.length);

//display the quotation
document.write("<blockquote class=quote>\n");
document.write("<DT>" + "\"" + quotes[index] + "\"\n");
document.write("<DD>" + "- " + authors[index] + "\n");
document.write("</blockquote>\n");
