var questions = new Array();
var choices = new Array();
var answers = new Array();
var response = new Array();

questions[0] = "1) What is the size of the Elland Road pitch?";
choices[0] = new Array();
choices[0][0] = "117 x 76 Yards";
choices[0][1] = "120x74 Yards";
choices[0][2] = "110x80 Yards";
choices[0][3] = "100x80 Yards";
answers[0] = choices[0][0];

questions[1] = "2) What is the official capacity of Elland Road?";
choices[1] = new Array();
choices[1][0] = "40,367";
choices[1][1] = "40,204";
choices[1][2] = "40,890";
choices[1][3] = "40,900";
answers[1] = choices[1][1];

questions[2] = "3) What is the record attendence for a game at Elland Road?";
choices[2] = new Array();
choices[2][0] = "57,892";
choices[2][1] = "80,000";
choices[2][2] = "65,432";
choices[2][3] = "48,982";
answers[2] = choices[2][0];

questions[3] = "4) What was the name of the ground before it became known as Elland Road?";
choices[3] = new Array();
choices[3][0] = "Old Pheasant Ground";
choices[3][1] = "Old Robin Ground";
choices[3][2] = "Old Dove Ground";
choices[3][3] = "Old Peacock Ground";

answers[3] = choices[3][3];

questions[4] = "5) When did fire destroy the old West stand?";
choices[4] = new Array();
choices[4][0] = "September 1956";
choices[4][1] = "September 1957";
choices[4][2] = "September 1958";
choices[4][3] = "September 1959";
answers[4] = choices[4][0];

questions[5] = "6) Which team used Elland Road as their home ground in April 1950?";
choices[5] = new Array();
choices[5][0] = "Halifax Town";
choices[5][1] = "Rotherham United";
choices[5][2] = "Huddersfield Town";
choices[5][3] = "Sheffield Utd";
answers[5] = choices[5][2];

questions[6] = "7) During the Inter-Cities Fairs Cup Semi-final against Dundee in 1968 which stand was closed?";
choices[6] = new Array();
choices[6][0] = "East Stand";
choices[6][1] = "South Stand";
choices[6][2] = "West Stand";
choices[6][3] = "North Stand (Kop)";
answers[6] = choices[6][3];

questions[7] = "8) In 1971 Elland Road became the first ground to include.....?";
choices[7] = new Array();
choices[7][0] = "A Police Compound";
choices[7][1] = "Undersoil heating";
choices[7][2] = "Flood Lights";
choices[7][3] = "Dug outs";
answers[7] = choices[7][0];

questions[8] = "9) How many fans can the East stand seat?";
choices[8] = new Array();
choices[8][0] = "15,000";
choices[8][1] = "16,000";
choices[8][2] = "17,000 ";
choices[8][3] = "18,000";
answers[8] = choices[8][2];

questions[9] = "10) Which American football team played their home games at Elland Road?";
choices[9] = new Array();
choices[9][0] = "Leeds Jags";
choices[9][1] = "Leeds Cougars";
choices[9][2] = "Leeds Colts";
choices[9][3] = "Leeds Wildcats";
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)!";