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

questions[0] = "1) At number 1, what does Pat do once a week?";
choices[0] = new Array();
choices[0][0] = "goes swimming";
choices[0][1] = "goes shopping";
choices[0][2] = "goes out for dinner";
choices[0][3] = "goes to sleep";
answers[0] = choices[0][0];

questions[1] = "2) At number 1, how does Pat travel around the city?";
choices[1] = new Array();
choices[1][0] = "she gets a taxi";
choices[1][1] = "she gets a bus";
choices[1][2] = "she rides a bike";
choices[1][3] = "she walks";
answers[1] = choices[1][3];

questions[2] = "3) At number 1, what has Pat done for many years?";
choices[2] = new Array();
choices[2][0] = "horse riding";
choices[2][1] = "dancing";
choices[2][2] = "jogging (running)";
choices[2][3] = "skiing";
answers[2] = choices[2][2];

questions[3] = "4) At number 2, what is meant by ‘diet’?";
choices[3] = new Array();
choices[3][0] = "the amount of food you eat";
choices[3][1] = "the types of food you eat";
choices[3][2] = "what time of day you eat";
choices[3][3] = "how you eat your food";
answers[3] = choices[3][1];

questions[4] = "5) At number 3, what type of meat does Pat not eat’?";
choices[4] = new Array();
choices[4][0] = "no meat";
choices[4][1] = "red meat";
choices[4][2] = "white meat";
choices[4][3] = "fish";
answers[4] = choices[4][0];

questions[5] = "6) At number 2, what is meant by ‘I watch the amount of dairy products I eat’?";
choices[5] = new Array();
choices[5][0] = "I look at everything I eat";
choices[5][1] = "I eat a large amount";
choices[5][2] = "I eat it looking in a mirror";
choices[5][3] = "I only eat a small amount";
answers[5] = choices[5][3];

questions[6] = "7) What type of food does Pat like to eat?";
choices[6] = new Array();
choices[6][0] = "fruit and vegetables";
choices[6][1] = "fish and chips";
choices[6][2] = "jelly and ice cream";
choices[6][3] = "pasta and rice";
answers[6] = choices[6][0];

questions[7] = "8) At number 5, why does Pat think some curries are not healthy?";
choices[7] = new Array();
choices[7][0] = "because you get large portions";
choices[7][1] = "because they are fried in gee";
choices[7][2] = "because they are cooked in oil";
choices[7][3] = "because they are not fried in gee";
answers[7] = choices[7][1];

questions[8] = "9) At number 5, what is meant by ‘the manner’?";
choices[8] = new Array();
choices[8][0] = "how something is done";
choices[8][1] = "how you speak to someone";
choices[8][2] = "how something is not done";
choices[8][3] = "how you look at someone";
answers[8] = choices[8][0];

questions[9] = "10) At number 6, what is ‘soya’?";
choices[9] = new Array();
choices[9][0] = "food made from potatoes";
choices[9][1] = "food made from  flour";
choices[9][2] = "a type of vegetable";
choices[9][3] = "food made from a bean plant";
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.";