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

questions[0] = "1) At number 7, what is meant by ‘volunteering’?";
choices[0] = new Array();
choices[0][0] = "helping others without being paid";
choices[0][1] = "helping others and being paid";
choices[0][2] = "doing lots of things";
choices[0][3] = "paying other people to help you";
answers[0] = choices[0][0];

questions[1] = "2) At number 10, what is meant by ‘go interpret’?";
choices[1] = new Array();
choices[1][0] = "go to college";
choices[1][1] = "travel to a place and translate languages";
choices[1][2] = "learn a new language";
choices[1][3] = "teach a new language";
answers[1] = choices[1][1];

questions[2] = "3) At number 14, what is meant by ‘special days’?";
choices[2] = new Array();
choices[2][0] = "giving somebody a present for their birthday ";
choices[2][1] = "days on which you are happy";
choices[2][2] = "days which are important, such as religious days";
choices[2][3] = "receiving gifts from friends";
answers[2] = choices[2][2];

questions[3] = "4) At number 19, what is meant by ‘the cultural needs of the children’?";
choices[3] = new Array();
choices[3][0] = "what other cultures desire";
choices[3][1] = "the wishes of other cultures";
choices[3][2] = "taking them on a trip to Poland";
choices[3][3] = "important values of a culture which need to be learned";
answers[3] = choices[3][3];

questions[4] = "5) At number 20, what is meant by ‘have some kind of get together’?";
choices[4] = new Array();
choices[4][0] = "people meet each other to celebrate, like at a party";
choices[4][1] = "selling and swapping unwanted clothes";
choices[4][2] = "get together and clean each others houses";
choices[4][3] = "meet friends and walk a dog";
answers[4] = choices[4][0];

questions[5] = "6) At number 21, what is meant by ‘retain a sense of identity’?";
choices[5] = new Array();
choices[5][0] = "write a book about yourself";
choices[5][1] = "remember the culture and background of your birth and your parents";
choices[5][2] = "write your name down so you remember who you are";
choices[5][3] = "keep in contact with family";
answers[5] = choices[5][1];

questions[6] = "7) At number 22, what is meant by ‘other cultures enriched them’?";
choices[6] = new Array();
choices[6][0] = "other cultures give them money";
choices[6][1] = "secures people a place at university ";
choices[6][2] = "people are improved when they learn about other cultures";
choices[6][3] = "other cultures helped them to get a job";
answers[6] = choices[6][2];

questions[7] = "8) At number 24, what is meant by ‘know who you are and what you are’?";
choices[7] = new Array();
choices[7][0] = "remember what your name is and where you live";
choices[7][1] = "remember your parents";
choices[7][2] = "remember where you was born";
choices[7][3] = "remember the culture and background of your birth and your parents";
answers[7] = choices[7][3];

questions[8] = "9) At number 26, what is meant by ‘share your roots’?";
choices[8] = new Array();
choices[8][0] = "talk with other people about your culture and background";
choices[8][1] = "go to an English school";
choices[8][2] = "learn about a variety of cultures";
choices[8][3] = "share secrets with friends";
answers[8] = choices[8][0];

questions[9] = "10) At number 27, what is meant by ‘intolerance’?";
choices[9] = new Array();
choices[9][0] = "someone who accepts all cultures";
choices[9][1] = "someone who does not accept other cultures, opinions or beliefs";
choices[9][2] = "somebody who has many opinions";
choices[9][3] = "somebody who follows many beliefs";
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.";