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

questions[0] = "1) At number 4, what is meant by ‘look at ways of bringing Europe to learners’?";
choices[0] = new Array();
choices[0][0] = "taking students on holiday to Europe";
choices[0][1] = "move Europe closer to the UK";
choices[0][2] = "help students to learn more about Europe";
choices[0][3] = "look at Europe using a map and photographs";
answers[0] = choices[0][2];

questions[1] = "2) At number 4, what is meant by ‘enhancing people’s employability skills’?";
choices[1] = new Array();
choices[1][0] = "improving people’s skills so that they can go shopping";
choices[1][1] = "improving people’s skills so that can go to college";
choices[1][2] = "improving people’s skills so that employers will offer them jobs";
choices[1][3] = "sending people to the job centre";
answers[1] = choices[1][2];

questions[2] = "3) At number 4, what is meant by ‘vocational skills’?";
choices[2] = new Array();
choices[2][0] = "the skills needed to do a particular job";
choices[2][1] = "the skills needed to go to college";
choices[2][2] = "the skills needed to work in Europe";
choices[2][3] = "the skills needed to learn a new language";
answers[2] = choices[2][0];

questions[3] = "4) At number 7, what is meant by ‘huge learning curve’?";
choices[3] = new Array();
choices[3][0] = "something that takes a long time to learn";
choices[3][1] = "something that takes a short time to learn";
choices[3][2] = "something that can not be learnt";
choices[3][3] = "something that is not straight";
answers[3] = choices[3][0];

questions[4] = "5) At number 9, what is meant by ‘pro-Europe’?";
choices[4] = new Array();
choices[4][0] = "someone who has never been to Europe";
choices[4][1] = "someone who lives in Europe";
choices[4][2] = "someone who doesn’t like Europe";
choices[4][3] = "someone who thinks the European Union is a good idea";
answers[4] = choices[4][3];

questions[5] = "6) At number 9, what is meant by ‘I think we should have the Euro’?";
choices[5] = new Array();
choices[5][0] = "the UK should be more like Europe";
choices[5][1] = "the UK should have the European currency";
choices[5][2] = "the UK is scared of Europe";
choices[5][3] = "the UK should have a fast train to Europe";
answers[5] = choices[5][1];

questions[6] = "7) At number 11, what is meant by ‘we’re quite insular’?";
choices[6] = new Array();
choices[6][0] = "the UK is not like other European countries";
choices[6][1] = "the UK is scared";
choices[6][2] = "the UK is a cold country";
choices[6][3] = "the UK is an island which doesn’t like to share with other countries";
answers[6] = choices[6][3];

questions[7] = "8) At number 19, what is meant by ‘symbolising unity’?";
choices[7] = new Array();
choices[7][0] = "an image which represents people as different";
choices[7][1] = "an image which represents people as together, not in conflict";
choices[7][2] = "an image which represents people as all the same";
answers[7] = choices[7][1];

questions[8] = "9) At number 31, what is meant by ‘united in diversity’?";
choices[8] = new Array();
choices[8][0] = "we are all together even though we are all different";
choices[8][1] = "we are all different";
choices[8][2] = "we are all together";
choices[8][3] = "we are different and should not join together";
answers[8] = choices[8][0];

questions[9] = "10) At number 35, what is meant by ‘the same issues’?";
choices[9] = new Array();
choices[9][0] = "travelling to the same places";
choices[9][1] = "the same problems and difficulties";
choices[9][2] = "talking about the same things";
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.";
