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

questions[0] = "1) What is meant by 'less fortunate than themselves'?";
choices[0] = new Array();
choices[0][0] = "people who are unlucky";
choices[0][1] = "people who are lucky";
choices[0][2] = "people who need money";
choices[0][3] = "people who are suffering or struggling compared to people who are not";
answers[0] = choices[0][3];

questions[1] = "2) What is the meaning of 'slogan'?";
choices[1] = new Array();
choices[1][0] = "a saying";
choices[1][1] = "a short phrase easy to remember, often used in politics or to sell a product";
choices[1][2] = "a sentence used to help save the world";
choices[1][3] = "a person who likes to help other people";
answers[1] = choices[1][1];

questions[2] = "3) What is meant by 'think global, act local'?";
choices[2] = new Array();
choices[2][0] = "be concerned about world problems and do something to help in your own area";
choices[2][1] = "be concerned about the problems in your area";
choices[2][2] = "be concerned about the problems around the world";
choices[2][3] = "think about the world and think about the local area";
answers[2] = choices[2][0];

questions[3] = "4) What is meant by 'people who have a look on the world'?";
choices[3] = new Array();
choices[3][0] = "people who look at the world";
choices[3][1] = "people who look over the world from space";
choices[3][2] = "people who are interested in problems around the world";
answers[3] = choices[3][2];

questions[4] = "5) What is meant by 'a good ingredient'?";
choices[4] = new Array();
choices[4][0] = "something that is found in cooking";
choices[4][1] = "a good person";
choices[4][2] = "a good citizen";
choices[4][3] = "something that is important";
answers[4] = choices[4][3];

questions[5] = "6) Which is the best definition of 'environmental issues'?";
choices[5] = new Array();
choices[5][0] = "problems with the natural world";
choices[5][1] = "problems with society";
choices[5][2] = "problems with the natural world which people need to discuss";
answers[5] = choices[5][2];

questions[6] = "7) What is meant by 'it arises all the time'?";
choices[6] = new Array();
choices[6][0] = "something that happens a lot or is talked about a lot";
choices[6][1] = "something that rises up";
choices[6][2] = "something that happens in time";
choices[6][3] = "something that is important";
answers[6] = choices[6][0];

questions[7] = "8) What is meant by 'save on electricity and resources'?";
choices[7] = new Array();
choices[7][0] = "use less electricity to save money";
choices[7][1] = "turn the lights off to save money";
choices[7][2] = "turn down things like heating and lighting to prevent global warming";
choices[7][3] = "turn the heating down to save money";
answers[7] = choices[7][2];

questions[8] = "9) What is meant by 'pass it on automatically'?";
choices[8] = new Array();
choices[8][0] = "you share something which is automatic";
choices[8][1] = "you share something with other people without thinking about it";
choices[8][2] = "you shouldn't drive an automatic car";
choices[8][3] = "teachers tell parents how to look after the world";
answers[8] = choices[8][1];

questions[9] = "10) What is meant by 'to lead from the front'?";
choices[9] = new Array();
choices[9][0] = "to start a protest and be at the front";
choices[9][1] = "go to war and lead people into battle";
choices[9][2] = "teachers should always be at the front of the class";
choices[9][3] = "the teacher is a role-model for her students";
answers[9] = choices[9][3];


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