var questions = new Array();
var choices = new Array();
var answers = new Array();
var response = new Array();

questions[0] = "1) When was Lucas born?";
choices[0] = new Array();
choices[0][0] = "12 April 1969";
choices[0][1] = "24 June 1969";
choices[0][2] = "7 October 1969";
choices[0][3] = "11 August 1970";
answers[0] = choices[0][0];

questions[1] = "2) Where was Lucas born?";
choices[1] = new Array();
choices[1][0] = "Sun City";
choices[1][1] = "Durban";
choices[1][2] = "Port Elizabeth";
choices[1][3] = "Johannesburg";
answers[1] = choices[1][3];

questions[2] = "3) What position did Lucas play in when representing Bophuthatwana in the Homeland Games?";
choices[2] = new Array();
choices[2][0] = "Goal Keeper";
choices[2][1] = "Defender";
choices[2][2] = "Midfielder";
choices[2][3] = "Striker";
answers[2] = choices[2][0];

questions[3] = "4) How tall was Lucas?";
choices[3] = new Array();
choices[3][0] = "6ft";
choices[3][1] = "6ft 1";
choices[3][2] = "6ft 2";
choices[3][3] = "6ft 3";

answers[3] = choices[3][1];

questions[4] = "5) When did Lucas sign for Leeds United?";
choices[4] = new Array();
choices[4][0] = "5 September 1994";
choices[4][1] = "11 August 1995";
choices[4][2] = "23 October 1994";
choices[4][3] = "4 November 1993";
answers[4] = choices[4][0];

questions[5] = "6) And how much did Leeds United pay for Lucas?";
choices[5] = new Array();
choices[5][0] = "£100,000";
choices[5][1] = "£250,000";
choices[5][2] = "£500,000";
choices[5][3] = "£750,000";
answers[5] = choices[5][1];

questions[6] = "7) Who did Leeds United sign Lucas from?";
choices[6] = new Array();
choices[6][0] = "Mamelodi Sundowns";
choices[6][1] = "Ajax Cape Town";
choices[6][2] = "Orlando Pirates";
choices[6][3] = "Kaiser Chiefs";
answers[6] = choices[6][3];

questions[7] = "8) Which fellow country man joined Leeds at the same time as Lucas?";
choices[7] = new Array();
choices[7][0] = "Steve Mokono";
choices[7][1] = "Brian O-Burton";
choices[7][2] = "Jomo Sono";
choices[7][3] = "Philomen Masinga";
answers[7] = choices[7][3];

questions[8] = "9) How many caps did Lucas win for South Africa?";
choices[8] = new Array();
choices[8][0] = "60";
choices[8][1] = "65";
choices[8][2] = "70";
choices[8][3] = "75";
answers[8] = choices[8][2];

questions[9] = "10) When did Lucas gain his Fifa Fair Play Award?";
choices[9] = new Array();
choices[9][0] = "1999";
choices[9][1] = "2000";
choices[9][2] = "2001";
choices[9][3] = "2002";
answers[9] = choices[9][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] = "Oh dear, I think you need to go back to school (or try again)!";
