/* 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)Does Jeannie think they make too much?";choices[0] = new Array();choices[0][0] = "a)Yes";choices[0][1] = "b)No";choices[0][2] = "c)";answers[0] = choices[0][0];
questions[1] = "2)How does she describe the situation?";choices[1] = new Array();choices[1][1] = "a)Ridiculous";choices[1][1] = "b)Unfortunate";choices[1][2] = "c)Unfair";answers[1] = choices[1][2];
questions[2] = "3)What sport does she talk about?";choices[2] = new Array();choices[2][2] = "a)The NHL - National Hockey League";choices[2][1] = "b)The NFL - National Football League";choices[2][2] = "c)";answers[2] = choices[2][0];
questions[3] = "4)What does she think?";choices[3] = new Array();choices[3][3] = "a)They get too much money.";choices[3][1] = "b)They deserve more money.";choices[3][2] = "c)Hockey is a great sport.";answers[3] = choices[3][0];
questions[4] = "5)Does Jim think they make too much?";choices[4] = new Array();choices[4][4] = "a)Yes";choices[4][1] = "b)No";choices[4][2] = "c)";answers[4] = choices[4][0];
questions[5] = "6)What would he like to see?";choices[5] = new Array();choices[5][5] = "a)Cheaper tickets for fans";choices[5][1] = "b)More soccer on TV";choices[5][2] = "c)Higher wages for teachers";answers[5] = choices[5][2];
questions[6] = "7)Does Rita think they make too much?";choices[6] = new Array();choices[6][6] = "a)Yes";choices[6][1] = "b)No";choices[6][2] = "c)";answers[6] = choices[6][1];
questions[7] = "8)Why does she think they deserve the money?";choices[7] = new Array();choices[7][7] = "a)They risk money";choices[7][1] = "b)Lots of money goes into sport.";choices[7][2] = "c)Both of these reasons.";answers[7] = choices[7][2];
questions[8] = "9)Does AI think they make too much?";choices[8] = new Array();choices[8][8] = "a)Yes";choices[8][1] = "b)No";choices[8][2] = "c)";answers[8] = choices[8][0];
questions[9] = "10)What sport does he use as an example?";choices[9] = new Array();choices[9][9] = "a)Football";choices[9][1] = "b)The Olympics";choices[9][2] = "c)Both";answers[9] = choices[9][0];
questions[10] = "11)Does Todd think they make too much?";choices[10] = new Array();choices[10][10] = "a)Yes";choices[10][1] = "b)No";choices[10][2] = "c)";answers[10] = choices[10][1];
questions[11] = "12)Why does he think they deserve the money?";choices[11] = new Array();choices[11][11] = "a)They bring in the revenue.";choices[11][1] = "b)They risk injury.";choices[11][2] = "c)They are cool.";answers[11] = choices[11][0];


/*
questions[0] = "1) What is a subject Arienne did not like?";
choices[0] = new Array();
choices[0][0] = "a) Languages";
choices[0][1] = "b) Sciences";
choices[0][2] = "c) History";
answers[0] = choices[0][2];

questions[1] = "2) What did Lupe enjoy?";
choices[1] = new Array();
choices[1][0] = "a) Book reports";
choices[1][1] = "b) English tests";
choices[1][2] = "c) Writing";
answers[1] = choices[1][2];

questions[2] = "3) What did Fred like later in life?";
choices[2] = new Array();
choices[2][0] = "a) Languages";
choices[2][1] = "b) Humanities";
choices[2][2] = "c) Sciences";
answers[2] = choices[2][1];

questions[3] = "4) What made Jeff like geography?";
choices[3] = new Array();
choices[3][0] = "a) A trip he took";
choices[3][1] = "b) Santa Claus";
choices[3][2] = "c) A special teacher";
answers[3] = choices[3][2];

questions[4] = "5) What interests Shibika?";
choices[4] = new Array();
choices[4][0] = "a) The human body";
choices[4][1] = "b) The human mind";
choices[4][2] = "c) The humanaties";
answers[4] = choices[4][0];

questions[5] = "6) What was Rebecca poor at?";
choices[5] = new Array();
choices[5][0] = "a) Sports";
choices[5][1] = "b) Computers";
choices[5][2] = "c) English";
answers[5] = choices[5][2];
*/

// 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.";



