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 ‘matters’ in local, national, European matters?";
choices[0] = new Array();
choices[0][0] = "something important";
choices[0][1] = "something in Europe";
choices[0][2] = "how MEPs vote";
choices[0][3] = "problems or topics which need attention";
answers[0] = choices[0][3];

questions[1] = "2) At number 6, what is meant by ‘common solutions to common problems’?";
choices[1] = new Array();
choices[1][0] = "people who are poor";
choices[1][1] = "problems you can fix yourself";
choices[1][2] = "problems we all share which can be fixed in the same way";
choices[1][3] = "problems in Europe";
answers[1] = choices[1][2];

questions[2] = "3) At number 10, what is meant by ‘level’ in ‘European level’?";
choices[2] = new Array();
choices[2][0] = "is not bumpy";
choices[2][1] = "problems which are particular to Europe rather than national";
choices[2][2] = "how high up it is";
choices[2][3] = "problems which are national not European";
answers[2] = choices[2][1];

questions[3] = "4) At number 12, what do people think is increasing illnesses in modern times?";
choices[3] = new Array();
choices[3][0] = "the weather";
choices[3][1] = "not eating enough fruit and vegetables";
choices[3][2] = "watching to much television";
choices[3][3] = "chemicals";
answers[3] = choices[3][3];

questions[4] = "5) At number 14, what is meant by ‘you share the burden’?";
choices[4] = new Array();
choices[4][0] = "let someone else pay for things";
choices[4][1] = "take half";
choices[4][2] = "things cost less if each country shares the overall cost of something";
choices[4][3] = "you share the money";
answers[4] = choices[4][2];

questions[5] = "6) At number 15, what is meant by ‘we need to be really tough’?";
choices[5] = new Array();
choices[5][0] = "need to fight more";
choices[5][1] = "we need to make difficult decisions";
choices[5][2] = "get hard skin";
choices[5][3] = "need to be strong";
answers[5] = choices[5][1];

questions[6] = "7) At number 18, what is meant by ‘convey’?";
choices[6] = new Array();
choices[6][0] = "communicate";
choices[6][1] = "a long line of trucks";
choices[6][2] = "argue";
choices[6][3] = "come together";
answers[6] = choices[6][0];

questions[7] = "8) At number 20, what is meant by ‘disconcerting’?";
choices[7] = new Array();
choices[7][0] = "frustrating or upsetting";
choices[7][1] = "enjoyable";
choices[7][2] = "not going to a concert";
choices[7][3] = "people shouldn't laugh";
answers[7] = choices[7][0];

questions[8] = "9) At number 21, what is meant by a ‘consulate’?";
choices[8] = new Array();
choices[8][0] = "say well done";
choices[8][1] = "a college";
choices[8][2] = "a museum";
choices[8][3] = "a government building in another country";
answers[8] = choices[8][3];

questions[9] = "10) At number 22, what is meant by ‘the main impact’?";
choices[9] = new Array();
choices[9][0] = "finding answers";
choices[9][1] = "the largest benefit";
choices[9][2] = "the smallest benefit";
choices[9][3] = "the injury";
answers[9] = choices[9][1];


// 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.";