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

questions[0] = "1) At number 2, what is meant by ‘collective act of worship’?";
choices[0] = new Array();
choices[0][0] = "people join together to do activities ";
choices[0][1] = "a large group of people pray together";
choices[0][2] = "somebody who talks about their religion";
choices[0][3] = "reading about other cultures";
answers[0] = choices[0][1];

questions[1] = "2) At number 2, what is meant by ‘the key one’?";
choices[1] = new Array();
choices[1][0] = "the largest or the most important";
choices[1][1] = "the smallest ";
choices[1][2] = "the one not to learn about";
choices[1][3] = "the less important";
answers[1] = choices[1][0];

questions[2] = "3) At number 2, what is meant by ‘participate’?";
choices[2] = new Array();
choices[2][0] = "to do an activity on your own";
choices[2][1] = "not to take part in the celebration";
choices[2][2] = "reject other religions";
choices[2][3] = "to join in with other people";
answers[2] = choices[2][3];

questions[3] = "4) At number 4, what does Pauline mean when she says ‘we enjoyed doing that’?";
choices[3] = new Array();
choices[3][0] = "we enjoyed talking about ourselves";
choices[3][1] = "we enjoyed going for lunch";
choices[3][2] = "we enjoyed it when people talked about their faith";
choices[3][3] = "we enjoyed talking about the weekend";
answers[3] = choices[3][2];

questions[4] = "5) At number 10, what is meant by ‘reasons of the heart’?";
choices[4] = new Array();
choices[4][0] = "to do something because of medical reasons";
choices[4][1] = "to do something because of love";
choices[4][2] = "to do something that your parents tell you";
choices[4][3] = "to do something you dislike";
answers[4] = choices[4][1];

questions[5] = "6) At number 12, what is ‘St Patrick’s day’?";
choices[5] = new Array();
choices[5][0] = "one day of the year celebrated by Irish people";
choices[5][1] = "one day of the year celebrated by UK cultures";
choices[5][2] = "one day of the year when Irish people go to church";
choices[5][3] = "something to celebrate once a week";
answers[5] = choices[5][0];

questions[6] = "7) At number 12, what is a ‘bunch of shamrock’?";
choices[6] = new Array();
choices[6][0] = "a blue leaf";
choices[6][1] = "a piece of food";
choices[6][2] = "a flag to represent Ireland";
choices[6][3] = "a green leaf and the symbol of Ireland";
answers[6] = choices[6][3];

questions[7] = "8) At number 12, what is meant by ‘a sort of function’?";
choices[7] = new Array();
choices[7][0] = "a lot of people together";
choices[7][1] = "a place to pray and read";
choices[7][2] = "a party or celebration";
choices[7][3] = "a place to visit on your own";
answers[7] = choices[7][2];

questions[8] = "9) At number 12, what is meant by ‘a sense of community’?";
choices[8] = new Array();
choices[8][0] = "knowing everybody in your community";
choices[8][1] = "being happy that you belong to a group of people";
choices[8][2] = "aware of different groups of people";
choices[8][3] = "knowing about yourself and your neighbours";
answers[8] = choices[8][1];

questions[9] = "10) At number 14, what is meant by ‘embrace both cultures’?";
choices[9] = new Array();
choices[9][0] = "accept and enjoy the beliefs and values of two cultures";
choices[9][1] = "keep visiting both countries";
choices[9][2] = "not to celebrate both cultures";
choices[9][3] = "love two different cultures";
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.";
