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 ‘represent people’?";
choices[0] = new Array();
choices[0][0] = "talk to people";
choices[0][1] = "ask people to help each other";
choices[0][2] = "help people by speaking for them";
choices[0][3] = "ask people to vote for you";
answers[0] = choices[0][2];

questions[1] = "2) At number 4, what is meant by ‘individuals can get in touch with me’?";
choices[1] = new Array();
choices[1][0] = "people can touch me";
choices[1][1] = "people can speak to me";
choices[1][2] = "people can listen to me";
choices[1][3] = "people always complain";
answers[1] = choices[1][1];

questions[2] = "3) At number 4, what is meant by ‘speed up the process’?";
choices[2] = new Array();
choices[2][0] = "travel quickly to the council office";
choices[2][1] = "make everyone at the council office work harder";
choices[2][2] = "make things happen more quickly";
choices[2][3] = "make everyone at the council office listen to you";
answers[2] = choices[2][2];

questions[3] = "4) At number 18, what is meant by ‘articulate the needs of the area’?";
choices[3] = new Array();
choices[3][0] = "live in the area to find out what problems it has";
choices[3][1] = "think about how to help people";
choices[3][2] = "speak about the problems in an area";
choices[3][3] = "find what problems there are";
answers[3] = choices[3][2];

questions[4] = "5) At number 22, what is meant by ‘the MP has more clout’?";
choices[4] = new Array();
choices[4][0] = "the MP earns a lot of money";
choices[4][1] = "the MP has more power";
choices[4][2] = "the MP is more important";
choices[4][3] = "the MP is better than other people";
answers[4] = choices[4][1];

questions[5] = "6) At number 22, what is meant by ‘passing the buck’?";
choices[5] = new Array();
choices[5][0] = "sharing money with other people";
choices[5][1] = "blaming yourself when something goes wrong";
choices[5][2] = "quitting your job when something goes wrong";
choices[5][3] = "blaming someone else when something goes wrong";
answers[5] = choices[5][3];

questions[6] = "7) At number 24, what is meant by ‘your first route’?";
choices[6] = new Array();
choices[6][0] = "the first direction";
choices[6][1] = "your first option";
choices[6][2] = "there is only one choice";
choices[6][3] = "you must be first";
answers[6] = choices[6][1];

questions[7] = "8) At number 28, what is meant by ‘acceptable candidates’?";
choices[7] = new Array();
choices[7][0] = "people suitable for the job";
choices[7][1] = "people who are honest";
choices[7][2] = "people who were born in the area";
choices[7][3] = "people who have a lot of money";
answers[7] = choices[7][0];

questions[8] = "9) At number 29, what is meant by an ‘all women short list’?";
choices[8] = new Array();
choices[8][0] = "only women";
choices[8][1] = "only women who are short can apply";
choices[8][2] = "a list of candidates who are all women";
answers[8] = choices[8][2];

questions[9] = "10) At number 4, what is meant by ‘I have a plague on all the political parties’?";
choices[9] = new Array();
choices[9][0] = "I’m not allowed to vote for any political party";
choices[9][1] = "I don’t know any political parties";
choices[9][2] = "I hate all political parties";
choices[9][3] = "I like all political parties";
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.";