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

questions[0] = "1) What is meant by 'being active'?";
choices[0] = new Array();
choices[0][0] = "doing something positive to help other people";
choices[0][1] = "being physical, such as walking and running";
choices[0][2] = "watching other people to see if they need help";
choices[0][3] = "people should go to parks and events";
answers[0] = choices[0][0];

questions[1] = "2) What is meant by 'the social group in which you move'?";
choices[1] = new Array();
choices[1][0] = "social groups you can move to";
choices[1][1] = "being social with people";
choices[1][2] = "the groups you join";
choices[1][3] = "the people you spend time with";
answers[1] = choices[1][3];

questions[2] = "3) What is meant by 'my intentions were to finish off'?";
choices[2] = new Array();
choices[2][0] = "I wanted to finish";
choices[2][1] = "I couldn't finish";
choices[2][2] = "I planned to complete";
choices[2][3] = "I planned to stop";
answers[2] = choices[2][2];

questions[3] = "4) What is meant by 'I met my now husband'?";
choices[3] = new Array();
choices[3][0] = "I met my husband now";
choices[3][1] = "I met the man who became my husband";
choices[3][2] = "I met my husband";
answers[3] = choices[3][1];

questions[4] = "5) What is meant by 'willing and equipped'?";
choices[4] = new Array();
choices[4][0] = "wanting to and able to";
choices[4][1] = "will do and can do";
choices[4][2] = "might do and can do";
answers[4] = choices[4][0];

questions[5] = "6) What is meant by 'a person of standing'?";
choices[5] = new Array();
choices[5][0] = "a judge or doctor";
choices[5][1] = "someone who is good at standing";
choices[5][2] = "a legal person";
choices[5][3] = "a well educated and qualified person";
answers[5] = choices[5][3];

questions[6] = "7) What is meant by 'swear in front of them'?";
choices[6] = new Array();
choices[6][0] = "make a verbal promise to do something";
choices[6][1] = "agree never to swear in front of people";
choices[6][2] = "make an oath";
choices[6][3] = "stand in front of someone and swear";
answers[6] = choices[6][0];

questions[7] = "8) What is meant by 'an Allegiance to the Queen'?";
choices[7] = new Array();
choices[7][0] = "to serve and protect the Queeen";
choices[7][1] = "to serve and protect the people in your community";
choices[7][2] = "to serve and protect the people of the nation";
choices[7][3] = "to serve and protect all people";
answers[7] = choices[7][2];

questions[8] = "9) What is meant by 'vow on a Bible'?";
choices[8] = new Array();
choices[8][0] = "place your hand on a bible and make a verbal promise";
choices[8][1] = "place your hand on a bible and promise to be a good citizen";
choices[8][2] = "make a verbal promise to read the bible";
choices[8][3] = "pay for a bible to take home and read";
answers[8] = choices[8][0];

questions[9] = "10) What is meant by 'things have changed quite dramatically'?";
choices[9] = new Array();
choices[9][0] = "the process of citizenship has changed";
choices[9][1] = "the process of citizenship has changed a little bit";
choices[9][2] = "the process of citizenship is similar to before";
choices[9][3] = "the process of citizenship has changed a lot";
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.";