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

questions[0] = "1) At number 10, what is meant by ‘represented round here’?";
choices[0] = new Array();
choices[0][0] = "something you can see";
choices[0][1] = "somewhere to go";
choices[0][2] = "around the corner";
choices[0][3] = "represented in this area";
answers[0] = choices[0][3];

questions[1] = "2) At number 12, what is meant by ‘ecumenical’?";
choices[1] = new Array();
choices[1][0] = "be happy with the church";
choices[1][1] = "pay money to the church";
choices[1][2] = "promote unity among churches or religions";
choices[1][3] = "only men are allowed into the church";
answers[1] = choices[1][2];

questions[2] = "3) At number 14, what is meant by ‘rows within the left and the right?";
choices[2] = new Array();
choices[2][0] = "lots of places to sit";
choices[2][1] = "arguments from different sides of the same group of people";
choices[2][2] = "rows of chairs on the left and right";
choices[2][3] = "everyone has the same argument";
answers[2] = choices[2][1];

questions[3] = "4) At number 18, what is meant by ‘its high turnover of movement’?";
choices[3] = new Array();
choices[3][0] = "something that keeps changing, e.g. people in an area";
choices[3][1] = "something that is very high";
choices[3][2] = "something that turns over";
choices[3][3] = "something that moves";
answers[3] = choices[3][0];

questions[4] = "5) At number 18, what is meant by ‘a ghettoed society’?";
choices[4] = new Array();
choices[4][0] = "a society where people from a variety of religions live";
choices[4][1] = "a society that allows people to live where they want";
choices[4][2] = "a society where race is not a problem";
choices[4][3] = "a society that separates where people live based on race or religion";
answers[4] = choices[4][3];

questions[5] = "6) At number 22, what is meant by an ‘envoy’?";
choices[5] = new Array();
choices[5][0] = "someone who is religious";
choices[5][1] = "someone who is green with envy ";
choices[5][2] = "a representative, like a diplomat, from the government";
choices[5][3] = "someone who represents nobody";
answers[5] = choices[5][2];

questions[6] = "7) At number 24, what is meant by ‘it’s ahead of the game’?";
choices[6] = new Array();
choices[6][0] = "someone who is winning in a game ";
choices[6][1] = "someone or something that is more developed or advanced";
choices[6][2] = "someone who has the most money";
choices[6][3] = "someone or something that is basic and undeveloped ";
answers[6] = choices[6][1];

questions[7] = "8) At number 29, what is meant by ‘who have popped in’?";
choices[7] = new Array();
choices[7][0] = "someone who enters a building or a shop and quickly leaves";
choices[7][1] = "someone who jumps in and out of a building or shop";
choices[7][2] = "someone who enters a building and stays for a long time";
choices[7][3] = "someone who walks straight passed the building ";
answers[7] = choices[7][0];

questions[8] = "9) At number 30, what is meant by ‘to come out at the end’?";
choices[8] = new Array();
choices[8][0] = "where you go when you die";
choices[8][1] = "to make something finish";
choices[8][2] = "to admit you have done something wrong";
choices[8][3] = "where a person will be in life when something has finished";
answers[8] = choices[8][3];

questions[9] = "10) At number 30, what is meant by ‘heart and romance is in Kashmir’?";
choices[9] = new Array();
choices[9][0] = "compassion towards a loved one";
choices[9][1] = "the feelings someone has towards a girl or boy";
choices[9][2] = "your emotions and sense of identity about a place";
choices[9][3] = "to get married in Kashmir";
answers[9] = choices[9][2];


// 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.";