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

questions[0] = "1) At number 2, how much is the property to rent?";
choices[0] = new Array();
choices[0][0] = "£560";
choices[0][1] = "£650 per year";
choices[0][2] = "£650 every 3 months";
choices[0][3] = "£650 per month";
answers[0] = choices[0][3];

questions[1] = "2) At number 4, how much deposit do you have to give the landlord?";
choices[1] = new Array();
choices[1][0] = "£1950 for 3 months";
choices[1][1] = "£650 for 1 month";
choices[1][2] = "£650 for 3 months";
choices[1][3] = "£650 a month for 3 months";
answers[1] = choices[1][0];

questions[2] = "3) At number 6, what type of property is it?";
choices[2] = new Array();
choices[2][0] = "2 bedroom bedsit";
choices[2][1] = "2 bedroom flat";
choices[2][2] = "3 bedroom flat";
choices[2][3] = "2 bedroom house";
answers[2] = choices[2][1];

questions[3] = "4) At number 12, what is meant by ‘fitted kitchen’?";
choices[3] = new Array();
choices[3][0] = "where appliances fit neatly into spaces";
choices[3][1] = "a kitchen that has being done by a professional ";
choices[3][2] = "a kitchen which has cupboards fitted and a cooker";
choices[3][3] = "a kitchen which has no cupboards or appliances ";
answers[3] = choices[3][2];

questions[4] = "5) At number 18, what is meant by ‘fully furnished property’?";
choices[4] = new Array();
choices[4][0] = "a brand new property";
choices[4][1] = "a property that is decorated ";
choices[4][2] = "a property that has no furniture ";
choices[4][3] = "the property has furniture ";
answers[4] = choices[4][3];

questions[5] = "6) At number 28, who should you call for repairs?";
choices[5] = new Array();
choices[5][0] = "the agent";
choices[5][1] = "the landlord";
choices[5][2] = "the double-glazers";
choices[5][3] = "the neighbour";
answers[5] = choices[5][0];

questions[6] = "7) At number 29, what are ‘smoke detectors’?";
choices[6] = new Array();
choices[6][0] = "small alarms on the ceiling which make a noise if there is a fire";
choices[6][1] = "an alarm which senses if anybody is smoking in the building ";
choices[6][2] = "an alarm which puts out a fire ";
choices[6][3] = "a small device for making smoke";
answers[6] = choices[6][0];

questions[7] = "8) At number 32, what bills are not included in the rent?";
choices[7] = new Array();
choices[7][0] = "gas and electric";
choices[7][1] = "gas and telephone";
choices[7][2] = "electric and telephone";
choices[7][3] = "gas";
answers[7] = choices[7][1];

questions[8] = "9) At number 34, how far away are the bus stops?";
choices[8] = new Array();
choices[8][0] = "far away";
choices[8][1] = "very close";
choices[8][2] = "not far";
choices[8][3] = "five minutes if you walk";
answers[8] = choices[8][3];

questions[9] = "10) At number 40, what is meant by ‘lodgers’?";
choices[9] = new Array();
choices[9][0] = "neighbours near the flat";
choices[9][1] = "people";
choices[9][2] = "repair men";
choices[9][3] = "people at the shops";
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.";