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

questions[0] = "1) At number 1, what is meant by ‘massive issue’?";
choices[0] = new Array();
choices[0][0] = "a cold or virus";
choices[0][1] = "a big problem";
choices[0][2] = "many arguments and fighting";
choices[0][3] = "an issue that can easily be solved";
answers[0] = choices[0][1];

questions[1] = "2) At number 1, what is meant by ‘big social change’?";
choices[1] = new Array();
choices[1][0] = "something that goes on between friends";
choices[1][1] = "something that changes between families ";
choices[1][2] = "something that changes across the country";
choices[1][3] = "something that happens between couples";
answers[1] = choices[1][2];

questions[2] = "3) At number 2, what is meant by ‘short term’?";
choices[2] = new Array();
choices[2][0] = "something is temporary ";
choices[2][1] = "something that lasts a long time";
choices[2][2] = "something that is permanent ";
choices[2][3] = "something that does not last very long";
answers[2] = choices[2][3];

questions[3] = "4) At number 3, what is meant by ‘he needs access’?";
choices[3] = new Array();
choices[3][0] = "he needs to be able to see";
choices[3][1] = "he needs food and water";
choices[3][2] = "he needs money and a job";
choices[3][3] = "he needs keys to his home";
answers[3] = choices[3][0];

questions[4] = "5) At number 3, what is meant by ‘geometric progression’?";
choices[4] = new Array();
choices[4][0] = "a mathematical equation  ";
choices[4][1] = "increasing in numbers";
choices[4][2] = "moving to a different area";
choices[4][3] = "decreasing in numbers";
answers[4] = choices[4][1];

questions[5] = "6) At number 3, what is meant by ‘not really addressing that question’?";
choices[5] = new Array();
choices[5][0] = "not helping people with housing problems";
choices[5][1] = "not understanding a question";
choices[5][2] = "not trying to understand and fix a problem";
answers[5] = choices[5][2];

questions[6] = "7) At number 4, what is meant by ‘stabilise relationships’?";
choices[6] = new Array();
choices[6][0] = "can a married couple live together without arguing and problems";
choices[6][1] = "get married couples to move back to the same address";
choices[6][2] = "have a happy family";
answers[6] = choices[6][0];

questions[7] = "8) At number 4, what is meant by ‘can they hang out there a bit longer’?";
choices[7] = new Array();
choices[7][0] = "can friends talk and hang about with each other for longer";
choices[7][1] = "can a married couple stay together a bit longer";
choices[7][2] = "can a married couple stop arguing for a bit longer";
choices[7][3] = "can they socialise for a bit longer";
answers[7] = choices[7][1];

questions[8] = "9) At number 4, what is meant by ‘sustain their relationships’?";
choices[8] = new Array();
choices[8][0] = "two people who break up after a short time";
choices[8][1] = "two people who can keep their marriage going";
choices[8][2] = "to help stop arguments ";
choices[8][3] = "two people who decide to get married";
answers[8] = choices[8][1];

questions[9] = "10) At number 4, what is meant by ‘campaign we’ve got to still have at national level’?";
choices[9] = new Array();
choices[9][0] = "discussing something with the local people in the community";
choices[9][1] = "discussing something of importance with friends and family";
choices[9][2] = "discussing something of importance to the whole country";
choices[9][3] = "discussing something of importance with co-workers";
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.";