var questions = new Array();
var choices = new Array();
var answers = new Array();
var response = new Array();

questions[0] = "1) At number 2, what is meant by ‘predominantly green’?";
choices[0] = new Array();
choices[0][0] = "all green";
choices[0][1] = "mostly green";
choices[0][2] = "slightly green";
choices[0][3] = "green in the middle";
answers[0] = choices[0][1];

questions[1] = "2) Which country has the most people?";
choices[1] = new Array();
choices[1][0] = "Scotland";
choices[1][1] = "Wales";
choices[1][2] = "Northern Ireland";
choices[1][3] = "England";
answers[1] = choices[1][3];

questions[2] = "3) At number 6, what is meant by ‘about 50 million’?";
choices[2] = new Array();
choices[2][0] = "a little more, or a little less than 50 million";
choices[2][1] = "exactly 50 million";
choices[2][2] = "a lot more than 50 million";
choices[2][3] = "slightly less than 50 million";
answers[2] = choices[2][0];

questions[3] = "4) Which country has the highest mountain?";
choices[3] = new Array();
choices[3][0] = "Northern Ireland";
choices[3][1] = "Wales";
choices[3][2] = "Scotland";
choices[3][3] = "England";
answers[3] = choices[3][2];

questions[4] = "5) Which sentence is correct?";
choices[4] = new Array();
choices[4][0] = "the biggest mountain is Ben Nevis";
choices[4][1] = "the widest mountain is Ben Nevis";
choices[4][2] = "the highest mountain is Ben Nevis";
choices[4][3] = "the largest mountain is Ben Nevis";
answers[4] = choices[4][2];

questions[5] = "6) Which sentence is correct?";
choices[5] = new Array();
choices[5][0] = "the biggest river is the Severn";
choices[5][1] = "the largest river is the Severn ";
choices[5][2] = "the widest river is the Severn";
choices[5][3] = "the longest river is the Severn";
answers[5] = choices[5][3];

questions[6] = "7) At number 16, what is meant by ‘Have these four countries always been united?’";
choices[6] = new Array();
choices[6][0] = "joined together";
choices[6][1] = "in agreement with each other";
choices[6][2] = "all supporting the same football team";
choices[6][3] = "friendly";
answers[6] = choices[6][0];

questions[7] = "8) What is meant by ‘each country had its own monarch’?";
choices[7] = new Array();
choices[7][0] = "each country had its own capital city";
choices[7][1] = "each country had its own king or queen";
choices[7][2] = "each country had its own government";
answers[7] = choices[7][1];

questions[8] = "9) When did Wales come under the control of England?";
choices[8] = new Array();
choices[8][0] = "1535";
choices[8][1] = "1800";
choices[8][2] = "1707";
choices[8][3] = "1922";
answers[8] = choices[8][0];

questions[9] = "10) What country is no longer in the United Kingdom?";
choices[9] = new Array();
choices[9][0] = "Northern Ireland";
choices[9][1] = "Wales";
choices[9][2] = "Republic of Ireland";
choices[9][3] = "Scotland";
answers[9] = choices[9][2];


// response for getting 100%
response[0] = "Excellent, 100% correct!";
// response for getting 90% or more
response[1] = "Excellent, try again to get 100%!"
// response for getting 70% or more
response[2] = "Well done. Good score. Try again to do better?";
// response for getting over 50%
response[3] = "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] = "Not good!  Try again to improve!";
// response for getting 9% or less
response[7] = "Less than 10% correct.";
