var questions = new Array();
var choices = new Array();
var answers = new Array();
var response = new Array();

questions[0] = "1) What was the final score of the game?";
choices[0] = new Array();
choices[0][0] = "Lufc 2 Derby County 1";
choices[0][1] = "Lufc 4 Derby County 2";
choices[0][2] = "Lufc 4 Derby County 3";
choices[0][3] = "Lufc 5 Derby County 4";
answers[0] = choices[0][2];

questions[1] = "2) Who scored two goals for Derby in the opening ten minutes?";
choices[1] = new Array();
choices[1][0] = "Aljosa Asanovic";
choices[1][1] = "Jacob Laurson";
choices[1][2] = "Christian Daily";
choices[1][3] = "Dean Sturridge";
answers[1] = choices[1][3];

questions[2] = "3) Who played in goal for Leeds in this game?";
choices[2] = new Array();
choices[2][0] = "John Lukic";
choices[2][1] = "Nigel Martyn";
choices[2][2] = "Mark Beeney";
choices[2][3] = "Shaun Allaway";
answers[2] = choices[2][1];

questions[3] = "4) Who scored the penalty that drew Leeds level?";
choices[3] = new Array();
choices[3][0] = "Jimmy Floyd Hasselbaink";
choices[3][1] = "Rod Wallace";
choices[3][2] = "Lee Bowyer";
choices[3][3] = "Ian Harte";

answers[3] = choices[3][0];

questions[4] = "5) Who scored the penalty for Derby County?";
choices[4] = new Array();
choices[4][0] = "Dean Sturridge";
choices[4][1] = "Christian Daily";
choices[4][2] = "Jacob Laursen";
choices[4][3] = "Aljosa Asanovic";
answers[4] = choices[4][3];

questions[5] = "6) Who scored the opening goal for the whites?";
choices[5] = new Array();
choices[5][0] = "Alan Maybury";
choices[5][1] = "David Hopkin";
choices[5][2] = "Harry Kewell";
choices[5][3] = "Rod Wallace";
answers[5] = choices[5][3];

questions[6] = "7) What was the attendence for this game?";
choices[6] = new Array();
choices[6][0] = "32,371";
choices[6][1] = "31,459";
choices[6][2] = "33,572";
choices[6][3] = "40,290";
answers[6] = choices[6][2];

questions[7] = "8) Who was the manager for Leeds United during the game?";
choices[7] = new Array();
choices[7][0] = "David O'Leary";
choices[7][1] = "George Graham";
choices[7][2] = "Peter Reid";
choices[7][3] = "Howard Wilkinson";
answers[7] = choices[7][1];

questions[8] = "9) Who scored the winning goal for Leeds with only seconds left?";
choices[8] = new Array();
choices[8][0] = "Lee Bowyer";
choices[8][1] = "Bruno Riberio";
choices[8][2] = "Harry Kewell";
choices[8][3] = "Alfe-Inge Haaland";
answers[8] = choices[8][0];

questions[9] = "10) What was the score in the reverse fixture at Pride Park?";
choices[9] = new Array();
choices[9][0] = "Derby County 1 LUFC 2";
choices[9][1] = "Derby County 0 LUFC 3";
choices[9][2] = "Derby County 0 LUFC 4";
choices[9][3] = "Derby County 0 LUFC 5";
answers[9] = choices[9][3];


// 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] = "Oh dear, I think you need to go back to school (or try again)!";
