/* 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) When is Lucky's birthday?";
choices[0] = new Array();
choices[0][0] = "a) January";
choices[0][1] = "b) April";
choices[0][2] = "c) November";
answers[0] = choices[0][2];

questions[1] = "2) How old is Lucky?";
choices[1] = new Array();
choices[1][0] = "a) 1 years old";
choices[1][1] = "b) 2 years old";
choices[1][2] = "c) 3 years old";
answers[1] = choices[1][1];

questions[2] = "3) Where is the dog afraid to go?";
choices[2] = new Array();
choices[2][0] = "a) The park";
choices[2][1] = "b) The river";
choices[2][2] = "c) Out of the yard";
answers[2] = choices[2][1];

questions[3] = "4) Where does the dog like to hide?";
choices[3] = new Array();
choices[3][0] = "a) Under the futon";
choices[3][1] = "b) In a box";
choices[3][2] = "c) Under a table";
answers[3] = choices[3][2];

questions[4] = "5) How does Richard spend on dog food each month?";
choices[4] = new Array();
choices[4][0] = "a) 5,000 Yen";
choices[4][1] = "b) 6,000 Yen";
choices[4][2] = "c) 7,000 Yen";
answers[4] = choices[4][1];


// response for getting 100%
response[0] = "Excellent, top marks!";
// response for getting 90% or more
response[1] = "Excellent, try again to get 100%!"
// response for getting 70% or more
response[2] = "Well done, that is a good score, can you do better?";
// response for getting over 50%
response[3] = "Nice one, you got more than half of the questions right, can you do better?";
// response for getting 40% or more
response[4] = "You got some questions right, you can do better!";
// response for getting 20% or more
response[5] = "You didn't do too well, why not try again!?";
// response for getting 10% or more
response[6] = "That was pretty poor!  Try again to improve!";
// response for getting 9% or less
response[7] = "Not so good! Maybe you should read the transcript.";



