var questions = new Array();
var choices = new Array();
var answers = new Array();
var response = new Array();

questions[0] = "His first name is?";
choices[0] = new Array();
choices[0][0] = "John";
choices[0][1] = "Thomas";
choices[0][2] = "Charles";
answers[0] = choices[0][2];


questions[1] = "His first work as director was?";
choices[1] = new Array();
choices[1][0] = "Ordinary People ";
choices[1][1] = "The Legend of Bagger Vance";
choices[1][2] = "The Horse Whisperer";
answers[1] = choices[1][0];

questions[2] = "In Out of Africa had the main role with?";
choices[2] = new Array();
choices[2][0] = "Michelle Pfeiffer";
choices[2][1] = "Meryl Streep";
choices[2][2] = "Barbara Streisand";
answers[2] = choices[2][1];



