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

questions[0] = "1) At number 6, what is meant by ‘it’s a job of two ends being an MP’?";
choices[0] = new Array();
choices[0][0] = "an MP has two jobs";
choices[0][1] = "an MP gets two salaries";
choices[0][2] = "an MP has to work in London and in their own city";
choices[0][3] = "an MP has two offices";
answers[0] = choices[0][2];

questions[1] = "2) At number 6, what is meant by ‘advice surgeries’?";
choices[1] = new Array();
choices[1][0] = "a place where people can get surgery";
choices[1][1] = "a place where people can find a doctor";
choices[1][2] = "a place where people can go and ask an MP for help";
choices[1][3] = "a place in a library";
answers[1] = choices[1][2];

questions[2] = "3) At number 7, what is meant by ‘we try and process from all that’?";
choices[2] = new Array();
choices[2][0] = "we go to London to think about what people tell us";
choices[2][1] = "we write letters about what people tell us";
choices[2][2] = "we complain to the government";
choices[2][3] = "we think about what people say and how we can make changes to help them";
answers[2] = choices[2][3];

questions[3] = "4) At number 15, what is meant by ‘causing a great fuss’?";
choices[3] = new Array();
choices[3][0] = "making other people angry or surprised";
choices[3][1] = "making other people happy";
choices[3][2] = "shouting at other people";
choices[3][3] = "talking when you should be quiet";
answers[3] = choices[3][0];

questions[4] = "5) At number 15, what is meant by a ‘public gallery’?";
choices[4] = new Array();
choices[4][0] = "a place where you can see paintings";
choices[4][1] = "a public place in a neighbourhood";
choices[4][2] = "where members of the public can hear councillors talking";
choices[4][3] = "a committee room ";
answers[4] = choices[4][2];

questions[5] = "6) At number 16, what is meant by ‘seem to be noisy on housing’?";
choices[5] = new Array();
choices[5][0] = "someone who makes a lot of noise";
choices[5][1] = "have a lot to say about something, e.g. housing problems";
choices[5][2] = "someone who shouts a lot";
choices[5][3] = "houses which are very noisy";
answers[5] = choices[5][1];

questions[6] = "7) At number 17, what is meant by ‘the strategy was community engagement’?";
choices[6] = new Array();
choices[6][0] = "trying to help people by focussing on the community and local people";
choices[6][1] = "trying to help people by living in the community";
choices[6][2] = "trying to help people by getting them to vote for you";
answers[6] = choices[6][0];

questions[7] = "8) At number 17, what is meant by ‘by turn of circumstances’?";
choices[7] = new Array();
choices[7][0] = "something that changes people";
choices[7][1] = "something that turns people into MPs";
choices[7][2] = "something happens because of different influences";
choices[7][3] = "something happens because you planned it";
answers[7] = choices[7][2];

questions[8] = "9) At number 19, what is meant by ‘gets underneath the radar of the media’?";
choices[8] = new Array();
choices[8][0] = "someone who reads newspapers";
choices[8][1] = "someone who does not believe everything the newspapers says";
choices[8][2] = "someone who watches a lot of television";
answers[8] = choices[8][1];

questions[9] = "10) At number 22, what is meant by ‘see if you’ve got the bottle’?";
choices[9] = new Array();
choices[9][0] = "see if people give you a bottle";
choices[9][1] = "giving people a bottle as a gift before saying hello";
choices[9][2] = "crossing the road safely";
choices[9][3] = "see if you are brave enough";
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.";
