var questions = new Array();
var choices = new Array();
var answers = new Array();
var response = new Array();

questions[0] = "He played Jack Crabb in";
choices[0] = new Array();
choices[0][0] = "All the President's Men";
choices[0][1] = "Little Big Man";
choices[0][2] = "Midnight Cowboy";
answers[0] = choices[0][1];


questions[1] = "After Rain Man, appeared with Sean Connery in";
choices[1] = new Array();
choices[1][0] = "Meet the Fockers";
choices[1][1] = "Wag The Dog";
choices[1][2] = "Family Business";
answers[1] = choices[1][2];

questions[2] = "His mother, Lillian, was a";
choices[2] = new Array();
choices[2][0] = "Secretary";
choices[2][1] = "Professional dancer";
choices[2][2] = "Jazz pianist";
answers[2] = choices[2][2];
