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

questions[0] = "1) What is meant by 'taking responsibility for each other'?";
choices[0] = new Array();
choices[0][0] = "caring about other people and working together to help each other";
choices[0][1] = "making sure the people in your family are okay";
choices[0][2] = "being responsible";
answers[0] = choices[0][0];

questions[1] = "2) What is meant by 'it's about diversity'?";
choices[1] = new Array();
choices[1][0] = "citizenship is about all people being the same";
choices[1][1] = "citizenship is about different people and communities";
choices[1][2] = "citizenship is about all people being different";
answers[1] = choices[1][1];

questions[2] = "3) What is meant by 'I'm not just using those words'?";
choices[2] = new Array();
choices[2][0] = "I can't think of anything else to say";
choices[2][1] = "I didn't speak those words";
choices[2][2] = "I'm speaking at the moment";
choices[2][3] = "I mean what I'm saying";
answers[2] = choices[2][3];

questions[3] = "4) What is meant by 'there's a lot of fragmentation'?";
choices[3] = new Array();
choices[3][0] = "people are like fragments";
choices[3][1] = "people are becoming separated from each other";
choices[3][2] = "society is broken";
choices[3][3] = "people are becoming closer together";
answers[3] = choices[3][1];

questions[4] = "5) What is meant by 'I'm not mythologizing the past'?";
choices[4] = new Array();
choices[4][0] = "making the past sound better than it was";
choices[4][1] = "making the past sound worse than it was";
choices[4][2] = "saying the past is a myth";
choices[4][3] = "saying the past has been lost";
answers[4] = choices[4][0];

questions[5] = "6) What is meant by 'an agenda'?";
choices[5] = new Array();
choices[5][0] = "somewhere people should go";
choices[5][1] = "something that is not important";
choices[5][2] = "something important that should be discussed";
choices[5][3] = "something that comes from government";
answers[5] = choices[5][2];

questions[6] = "7) What is meant by 'I think above all'?";
choices[6] = new Array();
choices[6][0] = "I think we should all talk";
choices[6][1] = "I think all people should ...";
choices[6][2] = "I think above something";
choices[6][3] = "I think the most important thing is ...";
answers[6] = choices[6][3];

questions[7] = "8) What is meant by 'reaching compromises'?";
choices[7] = new Array();
choices[7][0] = "reaching a place called compromise";
choices[7][1] = "coming to an agreement between two or more people";
choices[7][2] = "reaching an understanding";
choices[7][3] = "getting what you want from other people";
answers[7] = choices[7][1];

questions[8] = "9) What is meant by 'it's a negotiated position'?";
choices[8] = new Array();
choices[8][0] = "citizenship is about listening to other people";
choices[8][1] = "citizenship is about speaking to other people";
choices[8][2] = "citizenship is about coming to an agreement with other people";
answers[8] = choices[8][2];

questions[9] = "10) What is meant by 'it's about being engaged'?";
choices[9] = new Array();
choices[9][0] = "citizenship is about being interested in other people";
choices[9][1] = "citizenship is about listening to other people";
choices[9][2] = "citizenship is about speaking to other people";
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.";
