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

questions[0] = "1) What is meant by 'pops up in my head'?";
choices[0] = new Array();
choices[0][0] = "what is in my head";
choices[0][1] = "what is above my head";
choices[0][2] = "the first thing I can think of";
answers[0] = choices[0][2];

questions[1] = "2) What is meant by 'respect'?";
choices[1] = new Array();
choices[1][0] = "liking another person";
choices[1][1] = "having a good opinion of another person";
choices[1][2] = "liking all people";
answers[1] = choices[1][1];

questions[2] = "3) What is meant by 'respect in both ways'?";
choices[2] = new Array();
choices[2][0] = "you should respect all people";
choices[2][1] = "you should respect only yourself";
choices[2][2] = "respecting people in your community";
choices[2][3] = "two or more people respecting each other";
answers[2] = choices[2][3];

questions[3] = "4) What is meant by 'being a role model'?";
choices[3] = new Array();
choices[3][0] = "having a good role in life";
choices[3][1] = "setting a good example for other people to follow";
choices[3][2] = "setting a bad example so people know how not to behave";
answers[3] = choices[3][1];

questions[4] = "5) What is meant by 'contributing back to the community'?";
choices[4] = new Array();
choices[4][0] = "giving back to the community by doing something to help other people";
choices[4][1] = "paying money back to the community to help other people";
choices[4][2] = "go back to the community when you have grown older";
answers[4] = choices[4][0];

questions[5] = "6) What is meant by 'contributing to the society'?";
choices[5] = new Array();
choices[5][0] = "paying money to the government";
choices[5][1] = "doing something to help the government";
choices[5][2] = "working to help only yourself";
choices[5][3] = "working or trying to help the country in general";
answers[5] = choices[5][3];

questions[6] = "7)  What is meant by 'rubs off on your children'?";
choices[6] = new Array();
choices[6][0] = "your children don't listen to you";
choices[6][1] = "citizenship is important to your children";
choices[6][2] = "your children learn about society";
choices[6][3] = "your children learn from you about honesty and respect";
answers[6] = choices[6][3];

questions[7] = "8) What is meant by 'they're sort of opened up to'?";
choices[7] = new Array();
choices[7][0] = "something is opened for children";
choices[7][1] = "people are introduced to something";
choices[7][2] = "children are introduced to something";
choices[7][3] = "something is opened for people";
answers[7] = choices[7][2];

questions[8] = "9) What is meant by 'the diversity that we've got around us'?";
choices[8] = new Array();
choices[8][0] = "the different people near children";
choices[8][1] = "the diversity that we don't see in our communities";
choices[8][2] = "the diversity that we see in our communities";
answers[8] = choices[8][2];

questions[9] = "10) What does Inderjeet think is a responsibility as a parent?";
choices[9] = new Array();
choices[9][0] = "children are introduced to diversity and become good citizens";
choices[9][1] = "children become good citizens";
choices[9][2] = "children are respectful";
choices[9][3] = "children are introduced to diversity";
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.";