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

questions[0] = "1) What is meant by 'pay back to the country'?";
choices[0] = new Array();
choices[0][0] = "do something positive in the new country";
choices[0][1] = "give money to the country";
choices[0][2] = "pay to join the country";
choices[0][3] = "give money to the country you left";
answers[0] = choices[0][0];

questions[1] = "2) What is meant by 'country that adopted them'?";
choices[1] = new Array();
choices[1][0] = "the country adopted a child";
choices[1][1] = "the country is like a new parent";
choices[1][2] = "the country will adapt for new people";
choices[1][3] = "the country is like a new child";
answers[1] = choices[1][1];

questions[2] = "3) What is meant by 'contribute to the new society'?";
choices[2] = new Array();
choices[2][0] = "give all you can to the new society";
choices[2][1] = "pay to join the new society";
choices[2][2] = "give money to the society";
choices[2][3] = "do something positive in the new country";
answers[2] = choices[2][3];

questions[3] = "4) What is meant by 'be understanding of other cultures'?";
choices[3] = new Array();
choices[3][0] = "try to be like people who are different to you";
choices[3][1] = "respect people who are different to you";
choices[3][2] = "talk to people who are different to you";
choices[3][3] = "read books to understand other cultures";
answers[3] = choices[3][1];

questions[4] = "5) What is meant by 'not just stick to your own community'?";
choices[4] = new Array();
choices[4][0] = "try to socialise with different types of people";
choices[4][1] = "try to live in a different community";
choices[4][2] = "try to leave your community";
choices[4][3] = "try to live with different types of people";
answers[4] = choices[4][0];

questions[5] = "6) What is meant by 'sort of look beyond'?";
choices[5] = new Array();
choices[5][0] = "try to move outside your community";
choices[5][1] = "try living with people who are a different culture";
choices[5][2] = "look around the country for other communities";
choices[5][3] = "try looking outside your community to learn about other people";
answers[5] = choices[5][3];

questions[6] = "7) What is meant by 'connect with other people'?";
choices[6] = new Array();
choices[6][0] = "be friendly with other people";
choices[6][1] = "help other people to come together";
choices[6][2] = "try living with people from different cultures";
choices[6][3] = "talk with other people to understand their culture";
answers[6] = choices[6][3];

questions[7] = "8) Which definition best explains the phrase 'swear on the bible'?";
choices[7] = new Array();
choices[7][0] = "become a Christian";
choices[7][1] = "promise to read the bible";
choices[7][2] = "to be truthful";
choices[7][3] = "never to use swear words";
answers[7] = choices[7][2];

questions[8] = "9) Which definition best explains the phrase 'make an oath'?";
choices[8] = new Array();
choices[8][0] = "make a promise to learn about citizenship";
choices[8][1] = "make a promise to do something";
choices[8][2] = "promise to be a good citizen ";
choices[8][3] = "promise to learn the rules about citizenship";
answers[8] = choices[8][1];

questions[9] = "10) What was the process of citizenship 25 years ago?";
choices[9] = new Array();
choices[9][0] = "put your hand on a bible and verbally promise you would be a good citizen";
choices[9][1] = "make a verbal oath in front of a bible that you would be a good citizen";
choices[9][2] = "tell a solicitor holding a bible that you would be a good citizen";
choices[9][3] = "make a promise to God that you would be a good citizen";
answers[9] = choices[9][0];


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