var questions = new Array();
var choices = new Array();
var answers = new Array();
var response = new Array();

questions[0] = "1) Where was David born?";
choices[0] = new Array();
choices[0][0] = "London";
choices[0][1] = "Dublin";
choices[0][2] = "Cardiff";
choices[0][3] = "Belfast";
answers[0] = choices[0][0];

questions[1] = "2) What is David's date of birth?";
choices[1] = new Array();
choices[1][0] = "3 June 1960";
choices[1][1] = "2 May 1958";
choices[1][2] = "11 October 1959";
choices[1][3] = "1 July 1960";
answers[1] = choices[1][1];

questions[2] = "3) How tall is David?";
choices[2] = new Array();
choices[2][0] = "6ft";
choices[2][1] = "6ft 1";
choices[2][2] = "6ft 2";
choices[2][3] = "6ft 3";
answers[2] = choices[2][2];

questions[3] = "4) What position did David play?";
choices[3] = new Array();
choices[3][0] = "Goal Keeper";
choices[3][1] = "Defender";
choices[3][2] = "Midfielder";
choices[3][3] = "Forward";

answers[3] = choices[3][1];

questions[4] = "5) Against whom did David make his Leeds United debut?";
choices[4] = new Array();
choices[4][0] = "Manchester United";
choices[4][1] = "Liverpool";
choices[4][2] = "Newcastle United";
choices[4][3] = "Manchester City";
answers[4] = choices[4][3];

questions[5] = "6) How many appearences did David make for the Whites?";
choices[5] = new Array();
choices[5][0] = "1";
choices[5][1] = "5";
choices[5][2] = "10";
choices[5][3] = "20";
answers[5] = choices[5][2];

questions[6] = "7) Who made David his assistant after his retirement?";
choices[6] = new Array();
choices[6][0] = "Peter Reid";
choices[6][1] = "Howard Wilkinson";
choices[6][2] = "George Graham";
choices[6][3] = "Eddie Gray";
answers[6] = choices[6][2];

questions[7] = "8) How many caps for Ireland did David win?";
choices[7] = new Array();
choices[7][0] = "67";
choices[7][1] = "71";
choices[7][2] = "72";
choices[7][3] = "78";
answers[7] = choices[7][0];

questions[8] = "9) During the 1990 world cup, David scored the winning penalty in the shootout against who?";
choices[8] = new Array();
choices[8][0] = "Italy";
choices[8][1] = "Colombia";
choices[8][2] = "Romania";
choices[8][3] = "Argentina";
answers[8] = choices[8][2];

questions[9] = "10) After leaving Leeds, who did David go on to manage?";
choices[9] = new Array();
choices[9][0] = "Arsenal";
choices[9][1] = "Wolves";
choices[9][2] = "The Irish national team";
choices[9][3] = "Aston Villa";
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)!";
