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

questions[0] = "1) What is meant by 'it's difficult to define'?";
choices[0] = new Array();
choices[0][0] = "citizenship is difficult to understand";
choices[0][1] = "citizenship is difficult to explain";
choices[0][2] = "citizenship is difficult to talk about";
choices[0][3] = "citizenship is difficult to think about";
answers[0] = choices[0][1];

questions[1] = "2) What is meant by 'get what they can out of life'?";
choices[1] = new Array();
choices[1][0] = "people get a new life";
choices[1][1] = "people have a long life";
choices[1][2] = "people do as well as they can in life";
answers[1] = choices[1][2];

questions[2] = "3) What is meant by 'I also benefit from it'?";
choices[2] = new Array();
choices[2][0] = "she is able to make people better citizens";
choices[2][1] = "she receives benefits";
choices[2][2] = "she gets extra money to help other people";
choices[2][3] = "she is rewarded because she likes to help other people";
answers[2] = choices[2][3];

questions[3] = "4) What type of citizen does Margeurite think she is?";
choices[3] = new Array();
choices[3][0] = "European";
choices[3][1] = "English";
choices[3][2] = "British";
answers[3] = choices[3][0];

questions[4] = "5) What is meant by 'as opposed to'?";
choices[4] = new Array();
choices[4][0] = "opposite of";
choices[4][1] = "like something";
choices[4][2] = "compared to";
answers[4] = choices[4][2];

questions[5] = "6) What is meant by 'sense of identity'?";
choices[5] = new Array();
choices[5][0] = "knowing who your relatives are";
choices[5][1] = "knowing who other people are";
choices[5][2] = "knowing who you are";
choices[5][3] = "knowing what your attitudes are";
answers[5] = choices[5][2];

questions[6] = "7) What is meant by 'a multicultural environment'?";
choices[6] = new Array();
choices[6][0] = "a place where two cultures are together";
choices[6][1] = "a place where people of many cultures are together";
choices[6][2] = "a country where people are together";
choices[6][3] = "a special place where people go to be with other cultures";
answers[6] = choices[6][1];

questions[7] = "8) What is meant by 'people that you're exposed to'?";
choices[7] = new Array();
choices[7][0] = "people from a different community";
choices[7][1] = "people that expose themselves";
choices[7][2] = "people that you see and mix with";
answers[7] = choices[7][2];

questions[8] = "9) What is meant by 'more tolerant of new people'?";
choices[8] = new Array();
choices[8][0] = "do more to help people who are different";
choices[8][1] = "try to meet new people";
choices[8][2] = "be more understanding of people who are like you";
choices[8][3] = "be more understanding of people who are different";
answers[8] = choices[8][3];

questions[9] = "10) What is meant by 'a big thing'?";
choices[9] = new Array();
choices[9][0] = "very important thing";
choices[9][1] = "an important thing";
choices[9][2] = "something that is very big";
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.";