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 ‘have a perspective upon issues’?";
choices[0] = new Array();
choices[0][0] = "care about something";
choices[0][1] = "not care about something";
choices[0][2] = "have an understanding about something";
choices[0][3] = "not understand something";
answers[0] = choices[0][2];

questions[1] = "2) At number 2, what is meant by ‘Third World country’?";
choices[1] = new Array();
choices[1][0] = "a third country";
choices[1][1] = "a different world";
choices[1][2] = "places which have no country";
choices[1][3] = "the developing countries of Africa, Asia and Latin America";
answers[1] = choices[1][3];

questions[2] = "3) At number 3, what is meant by ‘close to my heart’?";
choices[2] = new Array();
choices[2][0] = "something that is very important to me";
choices[2][1] = "something close to my chest";
choices[2][2] = "something I don’t like";
choices[2][3] = "something in my heart";
answers[2] = choices[2][0];

questions[3] = "4) Why do you think Roxana organised a charity event for children?";
choices[3] = new Array();
choices[3][0] = "because she used to be one";
choices[3][1] = "because she is a mother and feels pity for neglected children";
choices[3][2] = "she likes children";
choices[3][3] = "she feels children can not speak for themselves";
answers[3] = choices[3][2];

questions[4] = "5) At number 4, what is meant by ‘days on end’?";
choices[4] = new Array();
choices[4][0] = "something that lasts for months";
choices[4][1] = "something that lasts for weeks";
choices[4][2] = "something that lasts for many days without a break";
choices[4][3] = "something that happens at the end of the day";
answers[4] = choices[4][2];

questions[5] = "6) At number 4, why did Roxana choose to cook soups from around the world?";
choices[5] = new Array();
choices[5][0] = "because soup is eaten all over the world";
choices[5][1] = "because the people coming would only eat soup";
choices[5][2] = "because soup tastes nice";
choices[5][3] = "because many children only eat soup for days on end";
answers[5] = choices[5][3];

questions[6] = "7) At number 5, what is meant by friends and neighbours ‘contributed’?";
choices[6] = new Array();
choices[6][0] = "they helped to cook soups and organise the charity event";
choices[6][1] = "they donate items to charity";
choices[6][2] = "everybody helped their friends and neighbours";
choices[6][3] = "they stayed at home";
answers[6] = choices[6][0];

questions[7] = "8) At number 5, what is meant by ‘makes one feel fulfilled’?";
choices[7] = new Array();
choices[7][0] = "makes her feel she has eaten too much";
choices[7][1] = "makes her feel good and happy about herself";
choices[7][2] = "makes her feel she has drank too much fluid";
choices[7][3] = "makes her feel unhappy about herself";
answers[7] = choices[7][1];

questions[8] = "9) At number 5, what is meant by ‘restores some faith in the human race’?";
choices[8] = new Array();
choices[8][0] = "makes her feel that people are caring and good";
choices[8][1] = "she feel people are becoming more religious";
choices[8][2] = "makes her feel people are caring more about themselves";
choices[8][3] = "they build more religious buildings";
answers[8] = choices[8][0];

questions[9] = "10) How does Roxana think people can get involved with their community?";
choices[9] = new Array();
choices[9][0] = "by helping their neighbours to go shopping";
choices[9][1] = "by creating or contributing to charity events which raise money";
choices[9][2] = "by attending charity events and fund raisers";
choices[9][3] = "by keeping your garden and streets tidy";
answers[9] = choices[9][1];


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