var questions = new Array();
var choices = new Array();
var answers = new Array();
var response = new Array();

// response for getting 100%
response[0] = "Excellent, top marks!";
// response for getting 90% or more
response[1] = "Very good! Try again!"
// response for getting 70% or more
response[2] = "Excellent, try again to get 100%!";
// response for getting over 50%
response[3] = "Well done, that is a good score, 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, I think you need to go back to school (or try again)!";

questions[0] = "Memories are a fixed record of an event. Every time you recall a memory it's like replaying a DVD?";
choices[0] = new Array();
choices[0][0] = "True";
choices[0][1] = "False";
answers[0] = choices[0][1];

questions[1] = "How many of the things you believe are true are actually true?";
choices[1] = new Array();
choices[1][0] = "10%";
choices[1][1] = "20%";
choices[1][2] = "30%";
choices[1][3] = "40%";
choices[1][4] = "50%";
choices[1][5] = "60%";
choices[1][6] = "70%";
choices[1][7] = "80%";
answers[1] = choices[1][1];

questions[2] = "Around 80% of people who write down their goals achieve them but how many people actually write down their goals?";
choices[2] = new Array();
choices[2][0] = "Less than 5%";
choices[2][1] = "Between 5% and 10%";
choices[2][2] = "Between 10% and 20%";
choices[2][3] = "Between 20% and 30%";
choices[2][4] = "Between 30% and 40%";
choices[2][5] = "Between 40% and 50%";
choices[2][6] = "Over 50%";
answers[2] = choices[2][0];

questions[3] = "Modern day imaging technology has measured the speed of thought. i.e. how quicky a thought can travel across the brain. And, the speed of thought is ...";
choices[3] = new Array();
choices[3][0] = "100 mph";
choices[3][1] = "125 mph";
choices[3][2] = "150 mph";
choices[3][3] = "205 mph";
choices[3][4] = "225 mph";
choices[3][5] = "275 mph";
choices[3][6] = "305 mph";
answers[3] = choices[3][4];

questions[4] = "A survey of psychotherapy literature by Alfred A. Barrios Ph.D. revealed the following recovery rates: Psychoanalysis : 38% recovery after 600 sessions; Behavior Therapy : 72% recovery after 22 sessions. What do you think was the recovery rate after 6 hypnotic sessions? (Source: American Health Magazine)";
choices[4] = new Array();
choices[4][0] = "<25%";
choices[4][1] = "40%";
choices[4][2] = "50%";
choices[4][3] = "60%";
choices[4][4] = "70%";
choices[4][5] = "80%";
choices[4][6] = "90%";
choices[4][7] = ">90%";
answers[4] = choices[4][6];

questions[5] = "Research to find the most effective way to stop smoking was carried out at the University of Iowa by analysing the results from some 600 studies covering almost 72,000 smokers. This research showed that you are x times more likely to successfully stop smoking with hypnosis that by willpower alone. What value is X ? ";
choices[5] = new Array();
choices[5][0] = "1";
choices[5][1] = "2";
choices[5][2] = "3";
choices[5][3] = "4";
choices[5][4] = "5";
choices[5][5] = "6";
choices[5][6] = "7";
choices[5][7] = "8";
answers[5] = choices[5][4];

questions[6] = "In any conversation or interaction what percentage of the meaning is taken from the actual words that are used?";
choices[6] = new Array();
choices[6][0] = "5%";
choices[6][1] = "7%";
choices[6][2] = "9%";
choices[6][3] = "15%";
choices[6][4] = "20%";
choices[6][5] = "25%";
choices[6][6] = "30%";
choices[6][7] = "40%";
answers[6] = choices[6][1];

questions[7] = "Research by psychologist Shad Helmsetter says that by the time the average American reached 18 years old, they have been told 'No' or 'You're not good enough' how many times?";
choices[7] = new Array();
choices[7][0] = "10,000";
choices[7][1] = "26,000";
choices[7][2] = "58,000";
choices[7][3] = "73,000";
choices[7][4] = "119,000";
choices[7][5] = "125,000";
choices[7][6] = "148,000";
choices[7][7] = "172,000";
answers[7] = choices[7][6];

questions[8] = "Research carried out at Harvard University shows that the greatest indicator of future performance was ...";
choices[8] = new Array();
choices[8][0] = "Your IQ";
choices[8][1] = "The exams you passed";
choices[8][2] = "Your social background or class";
choices[8][3] = "The school you attended";
choices[8][4] = "Your parents";
choices[8][5] = "The company you keep";
answers[8] = choices[8][5];

questions[9] = "What percentage of the average person's thoughts are positive";
choices[9] = new Array();
choices[9][0] = "<10%";
choices[9][1] = "16%";
choices[9][2] = "23%";
choices[9][3] = "38%";
choices[9][4] = "44%";
choices[9][5] = ">50%";
answers[9] = choices[9][2];

questions[10] = "Doctors now firmly believe what percentage of all sickness and disease starts in the mind?";
choices[10] = new Array();
choices[10][0] = "<10%";
choices[10][1] = "25%";
choices[10][2] = "45%";
choices[10][3] = "55%";
choices[10][4] = "65%";
choices[10][5] = "75%";
choices[10][6] = "85%";
answers[10] = choices[10][5];
