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

questions[0] = "1) At number 2, what is meant by ‘NHS budget’?";
choices[0] = new Array();
choices[0][0] = "healthcare provided by the government to run the National Health Service";
choices[0][1] = "money provided by the government to run the National Health Service";
answers[0] = choices[0][1];

questions[1] = "2) At number 2, what is meant by ‘services are accessible’?";
choices[1] = new Array();
choices[1][0] = "health services are in your area";
choices[1][1] = "people can find health services";
choices[1][2] = "people are able to go and use health services";
choices[1][3] = "health services are open 24 hours a day";
answers[1] = choices[1][2];

questions[2] = "3) At number 4, where does Primary Care Trust not run services?";
choices[2] = new Array();
choices[2][0] = "colleges";
choices[2][1] = "parks";
choices[2][2] = "schools";
choices[2][3] = "hospitals";
answers[2] = choices[2][3];

questions[3] = "4) At number 6, what is a ‘patient survey’?";
choices[3] = new Array();
choices[3][0] = "asking people questions to improve health services";
choices[3][1] = "asking people why they are in hospital";
choices[3][2] = "asking people why they go to the doctor, dentist, etc";
answers[3] = choices[3][0];

questions[4] = "5) At number 6, how often does PCT do a patient survey?";
choices[4] = new Array();
choices[4][0] = "once a month";
choices[4][1] = "once a year";
choices[4][2] = "every day";
choices[4][3] = "once a week";
answers[4] = choices[4][1];

questions[5] = "6) At number 7, what is an ‘action plan’?";
choices[5] = new Array();
choices[5][0] = "a list of how many people go to their GP";
choices[5][1] = "a written statement listing how many GPs are needed";
choices[5][2] = "a written statement explaining what is going to be improved";
choices[5][3] = "a list of all the GPs and their patients";
answers[5] = choices[5][2];

questions[6] = "7) At number 7, what is meant by ‘the whole of the patch’?";
choices[6] = new Array();
choices[6][0] = "the entire area";
choices[6][1] = "a few doctors";
choices[6][2] = "all the GPs and their patients";
answers[6] = choices[6][0];

questions[7] = "8) At number 9, what is meant by ‘we don’t want to be caught doing again’?";
choices[7] = new Array();
choices[7][0] = "we don’t want people complaining";
choices[7][1] = "we don’t want to make the same mistakes again";
choices[7][2] = "we don’t want people at PCT complaining";
answers[7] = choices[7][1];

questions[8] = "9) At number 10, what is meant by ‘they enlist those patients’?";
choices[8] = new Array();
choices[8][0] = "they give those patients medical care";
choices[8][1] = "they ask those people to join";
choices[8][2] = "they ask only people with breathing difficulties";
choices[8][3] = "people who have need to see nurses";
answers[8] = choices[8][1];

questions[9] = "10) At number 10, what is meant by ‘we work from that assumption’?";
choices[9] = new Array();
choices[9][0] = "we go to work";
choices[9][1] = "we all work together on that";
choices[9][2] = "we start from that idea";
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.";
