// used by index page to display different rabbit quiz teasers
var snippet = new Array() ;
var snipAddr = new Array() ;

snippet[0] = "Our pet rabbits are most closely related to which of the following:  a) Western cottontail; b) Eastern cottontail; c) Peter cottontail; d) European wild rabbit";
snipAddr[0] = "related";
snippet[1] = "How many teeth does a rabbit have?";
snipAddr[1] = "teeth";
snippet[2] = "Rabbits have the characteristic of being &quot;open rooted&quot;. What does this mean?";
snipAddr[2] = "openrooted";
snippet[3] = "A newborn rabbit is called what?";
snipAddr[3] = "newborn";
snippet[4] = "Currently, there are how many recognized breeds of rabbits in the U.S.?";
snipAddr[4] = "breeds";
snippet[5] = "Why are rabbits considered to be coprophagic?";
snipAddr[5] = "coprophagic";
snippet[6] = "What is the term for a rabbit of two or more breeds?";
snipAddr[6] = "twobreeds";
snippet[7] = "The largest litter number was born to a New Zealand rabbit--it numbered how many?";
snipAddr[7] = "largestlitter";
snippet[8] = "A rabbit's nictitating membrane can be found in what area?";
snipAddr[8] = "nictitating";
snippet[9] = "Based on its digestive system, a rabbit is considered to be a(n): a) ruminant; b) hindgut fermenter; c) omnivore; d) a pain in the neck to deal with";
snipAddr[9] = "digestivesystem";
snippet[10] = "The term &quot;warbles&quot; when applied to a rabbit means what?";
snipAddr[10] = "warbles";
snippet[11] = "Which of the following is <b><i>outside</i></b> a rabbit's normal temperature range? a) 99 &#176;F; b) 100.5 &#176;F; c) 102 &#176;F; d) 103.5 &#176;F";
snipAddr[11] = "temperature";
snippet[12] = "Which of the following antibiotics <b><i>is safe</i></b> for rabbits? a) ticarcillin; b) ampicillin; c) amoxicillin; d) penicillin";
snipAddr[12] = "antibiotics";
snippet[13] = "E. cuniculi is a name for what?";
snipAddr[13] = "ecuniculi";
snippet[14] = "The following terms are synonyms of each other <b><i>except</i></b>: a) torticollis; b) down head; c) wry neck; d) head tilt";
snipAddr[14] = "synonyms";
snippet[15] = "When applied to a rabbit, what does the term &quot;broken&quot; mean?";
snipAddr[15] = "broken";
snippet[16] = "How many toes does a rabbit have? (No fair peeking at your bun!)";
snipAddr[16] = "toes";
snippet[17] = "The visual field of each rabbit's eye independently is how many degrees?";
snipAddr[17] = "visualfield";
snippet[18] = "A rabbit's skeleton comprises approximately what percentage of its body weight?"; 
snipAddr[18] = "skeleton";
snippet[19] = "The following types of litter can safely be used for rabbits except: a) pelleted newspaper; b) pelleted aspen; c) pelleted pine; d) clumping clay";
snipAddr[19] = "litter";

var randomnumber=Math.floor(Math.random()*(snippet.length));
document.write (snippet[randomnumber]);
var address;
address = "rabbit_quiz/" + snipAddr[randomnumber] + ".html";
/*document.write ("</p><p><b>Answer:</b> <a href='" + address + "'>Click here!</a></div>");*/

document.write ("</p><p><b>Answer:</b> <a href='' onClick=\"window.open('" + address + "', 'LagoQuiz', config='directories=no,location=no,menubar=no,status=no,titlebar=no,toolbar=no,scrollbars=no,width=420,height=360,resizeable=yes')\">Click here!</a></div>");
