var questions = new Array();
var choices = new Array();
var answers = new Array();
var response = new Array();

questions[0] = "1) Which part of the body is the 'Tibia'?";
choices[0] = new Array();
choices[0][0] = "Thigh";
choices[0][1] = "Knee";
choices[0][2] = "Shin";
choices[0][3] = "Foot";
answers[0] = choices[0][2];

questions[1] = "2) Is there a difference in life expectancy between the sexes?";
choices[1] = new Array();
choices[1][0] = "No difference";
choices[1][1] = "Males live longer";
choices[1][2] = "Females live longer";
answers[1] = choices[1][2];

questions[2] = "3) How old can a female Brachypelma smithi become?";
choices[2] = new Array();
choices[2][0] = "20 years";
choices[2][1] = "30 years";
choices[2][2] = "40 years";
choices[2][3] = "50 years";
answers[2] = choices[2][1];

questions[3] = "4) What is the old name of the beautiful bird eating spider 'Neischnocolus zebratus'?";
choices[3] = new Array();
choices[3][0] = "Chilobrachys zebratus";
choices[3][1] = "Crypsidromus zebratus";
choices[3][2] = "Cyclosternum zebratus";
answers[3] = choices[3][1];

questions[4] = "5) Which colour are the legs of the 'Haplopelma lividum'?";
choices[4] = new Array();
choices[4][0] = "Black";
choices[4][1] = "Orange";
choices[4][2] = "Blue";
choices[4][3] = "Brown";
answers[4] = choices[4][2];

questions[5] = "6) Give the Latin name for 'Curly hair'?";
choices[5] = new Array();
choices[5][0] = "Pterinochilus murinus";
choices[5][1] = "Avicularia urticans";
choices[5][2] = "Aphonopelma anax";
choices[5][3] = "Brachypelma albopilosum";
answers[5] = choices[5][3];

questions[6] = "7) How many eyes does a bird spider have?";
choices[6] = new Array();
choices[6][0] = "1";
choices[6][1] = "2";
choices[6][2] = "5";
choices[6][3] = "8";
answers[6] = choices[6][3];

questions[7] = "8) Poecilotheria subfusca is a ... ?";
choices[7] = new Array();
choices[7][0] = "Troglodyte or cave spider";
choices[7][1] = "Soil spider";
choices[7][2] = "Tree spider";
answers[7] = choices[7][2];

questions[8] = "9) Which bird eating spider is NOT tame?";
choices[8] = new Array();
choices[8][0] = "Brachypelma smithi";
choices[8][1] = "Ephebopus fossor";
choices[8][2] = "Eupalaestrus campestratus";
choices[8][3] = "Grammostola rosea";
answers[8] = choices[8][1];

questions[9] = "10) Where are the varieties of the Brachypelma accommodated?";
choices[9] = new Array();
choices[9][0] = "South America";
choices[9][1] = "India";
choices[9][2] = "Europe";
choices[9][3] = "Africa";
answers[9] = choices[9][0];


// response for getting 100%
response[0] = "Excellent, you are a great expert!";
// response for getting 90% or more
response[1] = "Excellent, try again to get 100%!"
// response for getting 70% or more
response[2] = "Well done, that is a good score, can you do better?";
// response for getting over 50%
response[3] = "Nice one, 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] = "That was pretty poor!  Try again to improve!";
// response for getting 9% or less
response[7] = "Oh dear, you do not know anything about spiders! Do you??";