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

questions[0] = "1) What is a gurdwara?";
choices[0] = new Array();
choices[0][0] = "a language the people in the community speak ";
choices[0][1] = "a place of education ";
choices[0][2] = "a place of worship and a social area for Sikh people";
choices[0][3] = "the name of a town in another country";
answers[0] = choices[0][2];

questions[1] = "2) At number 2, what is meant by part of our contribution to the Sikh community’?";
choices[1] = new Array();
choices[1][0] = "helping everybody in the area";
choices[1][1] = "how donation money is spent ";
choices[1][2] = "how many free meals are given away";
choices[1][3] = "the way in which we help the Sikh community";
answers[1] = choices[1][3];

questions[2] = "3) At number 2, what is meant by ‘supplementary school’?";
choices[2] = new Array();
choices[2][0] = "a school that is in addition to the compulsory school children attend";
choices[2][1] = "a school for older children who have no qualifications ";
choices[2][2] = "a school for children who do not attend compulsory school";
choices[2][3] = "a school for those new to the area";
answers[2] = choices[2][0];

questions[3] = "4) At number 2, what is meant by ‘mother tongue’?";
choices[3] = new Array();
choices[3][0] = "the language their mother speaks";
choices[3][1] = "the language of our country and culture";
choices[3][2] = "only one language";
choices[3][3] = "the many languages they have learnt";
answers[3] = choices[3][1];

questions[4] = "5) At number 2, what is meant by ‘whole host of volunteers’?";
choices[4] = new Array();
choices[4][0] = "a small amount of volunteers";
choices[4][1] = "a variety of volunteers for example adults, children etc, ";
choices[4][2] = "a large amount of volunteers";
choices[4][3] = "volunteers who are just female";
answers[4] = choices[4][2];

questions[5] = "6) At number 2, how many people go to the ‘supplementary school’?";
choices[5] = new Array();
choices[5][0] = "more than 150";
choices[5][1] = "less than 150";
choices[5][2] = "exactly 150";
choices[5][3] = "approximately 150";
answers[5] = choices[5][3];

questions[6] = "7) At number 4, how often do people pray at the gurdwara?";
choices[6] = new Array();
choices[6][0] = "nearly every day";
choices[6][1] = "three evenings";
choices[6][2] = "two evenings and Sunday morning";
choices[6][3] = "every day";
answers[6] = choices[6][0];

questions[7] = "8) At number 4, what is meant by ‘on top of that’?";
choices[7] = new Array();
choices[7][0] = "something that is free";
choices[7][1] = "in addition to that";
choices[7][2] = "on the top of your food";
answers[7] = choices[7][1];

questions[8] = "9) At number 4, what is meant by ‘can just pop in’?";
choices[8] = new Array();
choices[8][0] = "people can enter the building without an appointment";
choices[8][1] = "people can only enter at certain time and days ";
choices[8][2] = "people can bring food to give to others";
choices[8][3] = "people have to arrange an appointment to visit ";
answers[8] = choices[8][0];

questions[9] = "10) How does the gurdwara help to create a stronger community?";
choices[9] = new Array();
choices[9][0] = "because people volunteer their time to help other people";
choices[9][1] = "because you get a free meal";
choices[9][2] = "because you can enter at any time";
choices[9][3] = "because they know two languages ";
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.";