/* This script and many more are available free online at
The JavaScript Source :: http://javascript.internet.com
Created by: James Crooke :: http://www.cj-design.com */

var questions = new Array();
var choices = new Array();
var answers = new Array();
var response = new Array();

// To add more questions, just follow the format below.

questions[0] = "1. Where can Class B dealers acquire animals?";
choices[0] = new Array();
choices[0][0] = "Other animal dealers ";
choices[0][1] = "Shelters and pounds";
choices[0][2] = "People who bred or raised the animals themselves";
choices[0][3] = "All of the above";
answers[0] = choices[0][3];

questions[1] = "2. What types of violations have Class B dealers been cited for?";
choices[1] = new Array();
choices[1][0] = "Unsanitary conditions";
choices[1][1] = "Illegally obtaining animals";
choices[1][2] = "Structural problems with facilities";
choices[1][3] = "All of the above";
answers[1] = choices[1][3];

questions[2] = "3. What is pound seizure?";
choices[2] = new Array();
choices[2][0] = "A condition that afflicts some shelter animals, causing them to experience tremors or seizures";
choices[2][1] = "A process in which animals from pounds and shelters are released for use in research facilities.";
choices[2][2] = "The acquisition of a private animal shelter by the state government.";
answers[2] = choices[2][1];

questions[3] = "4. In what state is pound seizure required?";
choices[3] = new Array();
choices[3][0] = "Minnesota";
choices[3][1] = "Texas";
choices[3][2] = "Michigan";
choices[3][3] = "New Hampshire";
answers[3] = choices[3][0];

questions[4] = "5. Why should we prohibit the use of shelter animals in research? ";
choices[4] = new Array();
choices[4][0] = "Former pets are better suited for the circus because they can be trained.";
choices[4][1] = "Shelters make enough money and do not need another source of income.";
choices[4][2] = "It is the ultimate betrayal.";
answers[4] = choices[4][2];

// response for getting 100%
response[0] = "Click ok to download your screensaver.";
// response for getting 90% or more
response[1] = "Sorry, try again.";
// response for getting 70% or more
response[2] = "Sorry, try again.";
// response for getting over 50%
response[3] = "Sorry, try again.";
// response for getting 40% or more
response[4] = "Sorry, try again.";
// response for getting 20% or more
response[5] = "Sorry, try again.";
// response for getting 10% or more
response[6] = "Sorry, try again.";
// response for getting 9% or less
response[7] = "Sorry, try again.";