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

questions[0] = "1) What is meant by 'takes part in society'?";
choices[0] = new Array();
choices[0][0] = "someone who works hard";
choices[0][1] = "someone who belongs to society";
choices[0][2] = "someone who tries to improve society";
answers[0] = choices[0][2];

questions[1] = "2) What is meant by 'actively thinking'?";
choices[1] = new Array();
choices[1][0] = "someone who is thinking about activities";
choices[1][1] = "someone who is thinking about how to make things better";
choices[1][2] = "someone who is thinking";
choices[1][3] = "someone who is thinking about society and laws";
answers[1] = choices[1][1];

questions[2] = "3) What is meant by 'get involved in debates'?";
choices[2] = new Array();
choices[2][0] = "someone who likes to ask questions";
choices[2][1] = "someone who likes to listen";
choices[2][2] = "someone who likes to talk";
choices[2][3] = "someone who joins important discussions";
answers[2] = choices[2][3];

questions[3] = "4) How many communities does Richard identify?";
choices[3] = new Array();
choices[3][0] = "4";
choices[3][1] = "3";
choices[3][2] = "2";
choices[3][3] = "1";
answers[3] = choices[3][1];

questions[4] = "5) What is meant by 'engaged with questions'?";
choices[4] = new Array();
choices[4][0] = "someone who is answering questions";
choices[4][1] = "someone who asks questions";
choices[4][2] = "someone who takes part in debates and asks questions";
answers[4] = choices[4][2];

questions[5] = "6) What is meant by 'respects the laws'?";
choices[5] = new Array();
choices[5][0] = "someone who want to change the laws";
choices[5][1] = "someone who breaks the laws";
choices[5][2] = "someone who tolerates the laws";
choices[5][3] = "someone who obeys the laws";
answers[5] = choices[5][3];

questions[6] = "7) What is meant by 'takes an active part'?";
choices[6] = new Array();
choices[6][0] = "someone who is trying to help communities and society";
choices[6][1] = "someone who is very active";
choices[6][2] = "someone who tries to change communities and society";
answers[6] = choices[6][0];

questions[7] = "8) What is an 'MEP'?";
choices[7] = new Array();
choices[7][0] = "Member of the English Parliament";
choices[7][1] = "Member of the European Parliament";
choices[7][2] = "Member of the European Police";
answers[7] = choices[7][1];

questions[8] = "9) What does Richard say might need changing?";
choices[8] = new Array();
choices[8][0] = "society";
choices[8][1] = "communities";
choices[8][2] = "debates";
choices[8][3] = "laws";
answers[8] = choices[8][3];

questions[9] = "10) What two things would Richard like to improve?";
choices[9] = new Array();
choices[9][0] = "society  and laws";
choices[9][1] = "debates and laws";
choices[9][2] = "society and how people work together as a community";
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.";