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 a ‘particular issue’?";
choices[0] = new Array();
choices[0][0] = "an educational idea";
choices[0][1] = "a topic or problem that is not important";
choices[0][2] = "an educational word";
choices[0][3] = "an important topic or problem";
answers[0] = choices[0][3];

questions[1] = "2) At number 2, what is meant by ‘emotional wellbeing’?";
choices[1] = new Array();
choices[1][0] = "how happy someone is ";
choices[1][1] = "how healthy someone is";
choices[1][2] = "not feeling well";
choices[1][3] = "unhappy and not at ease";
answers[1] = choices[1][0];

questions[2] = "3) At number 2, what is meant by ‘raise the profile’ of healthy eating in schools?";
choices[2] = new Array();
choices[2][0] = "make children eat healthy food";
choices[2][1] = "make healthy eating an important topic or issue";
choices[2][2] = "change the school dinners";
answers[2] = choices[2][1];

questions[3] = "4) At number 3, what does the ‘school council’ do?";
choices[3] = new Array();
choices[3][0] = "pays for all the school equipment";
choices[3][1] = "organize activities in schools";
choices[3][2] = "talk about important things and listen to what the children want";
choices[3][3] = "tells the children what they want ";
answers[3] = choices[3][2];

questions[4] = "5) At number 5, what is meant by ‘healthy eating promotion’?";
choices[4] = new Array();
choices[4][0] = "advertise healthy eating in books";
choices[4][1] = "advertise healthy eating through television";
choices[4][2] = "advertise healthy eating through magazines";
choices[4][3] = "advertise healthy eating through letters and posters";
answers[4] = choices[4][3];

questions[5] = "6) At number 6, how might schools improve food?  ";
choices[5] = new Array();
choices[5][0] = "have every child on packed lunches";
choices[5][1] = "buy better quality food";
choices[5][2] = "cooking their own food in the school";
choices[5][3] = "offer more food";
answers[5] = choices[5][2];

questions[6] = "7) At number 14, what is meant by ‘confectionary bracket’?";
choices[6] = new Array();
choices[6][0] = "food like bread and pastries";
choices[6][1] = "food like sweets and chocolate";
choices[6][2] = "food like fruit and vegetables";
choices[6][3] = "food like nuts and crisps";
answers[6] = choices[6][1];

questions[7] = "8) At number 16, what is meant by ‘a government drive’?";
choices[7] = new Array();
choices[7][0] = "something the government does not want to happen";
choices[7][1] = "something that the government is hoping will happen";
choices[7][2] = "the government wants everyone to own a car";
choices[7][3] = "something that the government is forcing to happen";
answers[7] = choices[7][3];

questions[8] = "9) At number 18, what is meant by ‘overburdened timetable’?";
choices[8] = new Array();
choices[8][0] = "the teachers are having to teach too many things";
choices[8][1] = "the teachers are not teaching enough";
choices[8][2] = "teachers not having enough time to do everything";
choices[8][3] = "teachers having to work  longer hours";
answers[8] = choices[8][0];

questions[9] = "10) At number 20, what is needed to run the after school clubs?";
choices[9] = new Array();
choices[9][0] = "teachers wanting to run them";
choices[9][1] = "healthy pupils";
choices[9][2] = "pupils wanting to join";
choices[9][3] = "pupils who like football and netball";
answers[9] = choices[9][0];


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