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

questions[0] = "1) At number 2, what might prevent people from having a healthy lifestyle?";
choices[0] = new Array();
choices[0][0] = "not having the equipment to cook meals";
choices[0][1] = "not knowing how to cook well balanced meals";
choices[0][2] = "not having much money to buy good food";
choices[0][3] = "they do not like the food";
answers[0] = choices[0][2];

questions[1] = "2) At number 2, what second thing might prevent people from having a healthy lifestyle?";
choices[1] = new Array();
choices[1][0] = "unable to exercise because of lack of time";
choices[1][1] = "unable to exercise because of a disability";
choices[1][2] = "unable to exercise because of lack of money";
choices[1][3] = "unable to exercise because of lack of experience";
answers[1] = choices[1][1];

questions[2] = "3) At number 2, what is meant by ‘fatigued’?";
choices[2] = new Array();
choices[2][0] = "to be very tired";
choices[2][1] = "to be overweight";
choices[2][2] = "to be full of energy";
choices[2][3] = "to be overfed";
answers[2] = choices[2][0];

questions[3] = "4) At number 3, what do you think a ‘healthy mind’ means?";
choices[3] = new Array();
choices[3][0] = "someone who is worried by problems";
choices[3][1] = "someone who eats lots of fruit";
choices[3][2] = "someone who reads a lot of books";
choices[3][3] = "someone who isn’t worried by problems";
answers[3] = choices[3][3];

questions[4] = "5) At number 3, what is meant by ‘stamina to fight for better things’?";
choices[4] = new Array();
choices[4][0] = "being able to run faster than anyone else";
choices[4][1] = "being able to fight other people";
choices[4][2] = "having the strength to try and make a better life";
answers[4] = choices[4][2];

questions[5] = "6) At number 4, what can often lead to ill health?";
choices[5] = new Array();
choices[5][0] = "unhealthy eating";
choices[5][1] = "not having a job";
choices[5][2] = "lack of exercise";
choices[5][3] = "not being able to sleep";
answers[5] = choices[5][1];

questions[6] = "7) At number 4, what is meant by ‘fall into that trap’?";
choices[6] = new Array();
choices[6][0] = "find yourself with a serious problem which you can’t change";
choices[6][1] = "fall into a hole";
choices[6][2] = "get trapped in the home";
choices[6][3] = "get trapped because of no money";
answers[6] = choices[6][0];

questions[7] = "8) At number 4, what is meant by ‘joblessness actually breeds ill health’?";
choices[7] = new Array();
choices[7][0] = "not being in work can make you lazy";
choices[7][1] = "not being in work can make you unwell";
choices[7][2] = "not being in work can make you healthy";
answers[7] = choices[7][1];

questions[8] = "9) At number 4, what is meant by a job that ‘fulfils your mind’?";
choices[8] = new Array();
choices[8][0] = "a job that is not interesting";
choices[8][1] = "a job that makes you work hard";
choices[8][2] = "a job that makes you think and is interesting";
choices[8][3] = "a job that requires reading";
answers[8] = choices[8][2];

questions[9] = "10) What two things does Roxana think we need to say healthy?";
choices[9] = new Array();
choices[9][0] = "healthy eating";
choices[9][1] = "exercise and a job you like";
choices[9][2] = "staying at home";
choices[9][3] = "plenty of exercise";
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.";