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

questions[0] = "1) At number 2, why do councillors meet in the council chamber?";
choices[0] = new Array();
choices[0][0] = "to agree how the city should change";
choices[0][1] = "to vote on changes which might effect the city";
choices[0][2] = "so people vote for them";
choices[0][3] = "to see which political party has won";
answers[0] = choices[0][1];

questions[1] = "2) At number 4, how long does a councillor stay in the job of Lord Mayor?";
choices[1] = new Array();
choices[1][0] = "2 years";
choices[1][1] = "18 months";
choices[1][2] = "1 year";
choices[1][3] = "until he or she is voted out";
answers[1] = choices[1][2];

questions[2] = "3) At number 8, what is meant by ‘Just short of a year’?";
choices[2] = new Array();
choices[2][0] = "11 months";
choices[2][1] = "10 months";
choices[2][2] = "50 weeks";
choices[2][3] = "something that lasts less than one year";
answers[2] = choices[2][3];

questions[3] = "4) At number 12, what is meant by ‘faith groups’?";
choices[3] = new Array();
choices[3][0] = "people who like to join groups";
choices[3][1] = "people who have faith";
choices[3][2] = "people who belong to different religions";
choices[3][3] = "groups of people with no religion";
answers[3] = choices[3][2];

questions[4] = "5) At number 22, choose a meaning for ‘alliance’?";
choices[4] = new Array();
choices[4][0] = "people all together";
choices[4][1] = "people all separate ";
choices[4][2] = "when two people agree with each other";
choices[4][3] = "a formal agreement between groups of people";
answers[4] = choices[4][3];

questions[5] = "6) At number 24, what is meant by ’Lord Mayor just does so many engagements’?";
choices[5] = new Array();
choices[5][0] = "has many wives";
choices[5][1] = "does many repairs";
choices[5][2] = "has to go to many public events and meetings";
choices[5][3] = "has many jobs";
answers[5] = choices[5][2];

questions[6] = "7) At number 24, what is meant by ‘my employers grumble sometimes’?";
choices[6] = new Array();
choices[6][0] = "her employers complain";
choices[6][1] = "her employers are happy";
choices[6][2] = "her employers shout at her";
choices[6][3] = "her employers want to sack her";
answers[6] = choices[6][0];

questions[7] = "8) At number 24, what is meant by ‘a civic engagement’?";
choices[7] = new Array();
choices[7][0] = "a wedding";
choices[7][1] = "a public event about the city";
choices[7][2] = "a funeral";
choices[7][3] = "a public event in a different city";
answers[7] = choices[7][1];

questions[8] = "9) At number 29, choose a meaning for ‘formulated’?";
choices[8] = new Array();
choices[8][0] = "formatted";
choices[8][1] = "ended";
choices[8][2] = "finished";
choices[8][3] = "created";
answers[8] = choices[8][3];

questions[9] = "10) At number 37, what is meant by ‘really nice spicy sort of dish’?";
choices[9] = new Array();
choices[9][0] = "a hot curry";
choices[9][1] = "interesting food mixed together";
choices[9][2] = "a dish which tastes nice";
choices[9][3] = "interesting because something is mixed together";
answers[9] = choices[9][3];


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