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

questions[0] = "1) At number 13, what is meant by ‘could become more welcoming’?";
choices[0] = new Array();
choices[0][0] = "ignore people around you";
choices[0][1] = "invite newcomers in for a coffee";
choices[0][2] = "people in the area could do more to accept newcomers";
choices[0][3] = "people should say hello";
answers[0] = choices[0][2];

questions[1] = "2) At number 14, what is meant by ‘integrate into our society’?";
choices[1] = new Array();
choices[1][0] = "to stay only in a small part of our society";
choices[1][1] = "helps people to get a job";
choices[1][2] = "excludes people from the wider society";
choices[1][3] = "helps people to feel part of the wider society";
answers[1] = choices[1][3];

questions[2] = "3) At number 14, what is meant by ‘indigenous people’?";
choices[2] = new Array();
choices[2][0] = "the people who were born in that area";
choices[2][1] = "people born in another country";
choices[2][2] = "foreign people";
choices[2][3] = "people who were not born in that area";
answers[2] = choices[2][0];

questions[3] = "4) At number 26, what is meant by ‘integrate as much as possible by learning English’?";
choices[3] = new Array();
choices[3][0] = "learn the English language so that you can surf the internet";
choices[3][1] = "learn the English language so you can join in with the wider society";
choices[3][2] = "learn the English language so that you can buy clothes";
choices[3][3] = "learn the English language because the government says you should";
answers[3] = choices[3][1];

questions[4] = "5) At number 28, what makes a good citizen?";
choices[4] = new Array();
choices[4][0] = "someone who wants to sit at home all day";
choices[4][1] = "some one who wants to party";
choices[4][2] = "someone who wants to work";
choices[4][3] = "someone who likes to shop";
answers[4] = choices[4][2];

questions[5] = "6) At number 29, what is meant by ‘a value judgment’?";
choices[5] = new Array();
choices[5][0] = "your own personal judgment on society";
choices[5][1] = "judging a person on their beliefs";
choices[5][2] = "judging someone on their own values";
choices[5][3] = "believing something to be true based on your own values and beliefs";
answers[5] = choices[5][3];

questions[6] = "7) At number 32, what is meant by ‘having access to English classes’?";
choices[6] = new Array();
choices[6][0] = "allowing English people to join classes";
choices[6][1] = "teaching an English class";
choices[6][2] = "being allowed to join an English language class";
choices[6][3] = "going to college to learn English";
answers[6] = choices[6][2];

questions[7] = "8) At number 45, what is meant by ‘exchange between faith communities’?";
choices[7] = new Array();
choices[7][0] = "exchanges vows at a wedding";
choices[7][1] = "swap your religion for a different one";
choices[7][2] = "people from the same religion talking to each other";
choices[7][3] = "people from different religions talking to each other";
answers[7] = choices[7][3];

questions[8] = "9) At number 47, what is meant by ‘we should be open to other faiths’?";
choices[8] = new Array();
choices[8][0] = "we should learn more about and accept other religions and beliefs";
choices[8][1] = "we should open our door to religious people";
choices[8][2] = "we should believe other religions";
choices[8][3] = "we should have faith in our own religion";
answers[8] = choices[8][0];

questions[9] = "10) At number 47, complete the sentence, ‘Britain should know more about …’";
choices[9] = new Array();
choices[9][0] = "other places to visit";
choices[9][1] = "other religions";
choices[9][2] = "classes to attend at college";
choices[9][3] = "the people in their area";
answers[9] = choices[9][1];


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