var questions = new Array();
var choices = new Array();
var answers = new Array();
var response = new Array();

questions[0] = "Did she won a Miss USA World contest?";
choices[0] = new Array();
choices[0][0] = "No, never";
choices[0][1] = "Yes, in 1993";
choices[0][2] = "Yes, in 1986";
answers[0] = choices[0][2];


questions[1] = "Won a worst actress Razzie award in 2005 with?";
choices[1] = new Array();
choices[1][0] = "Bulworth";
choices[1][1] = "Catwoman";
choices[1][2] = "X-Men";
answers[1] = choices[1][1];

questions[2] = "Appeared as wife of an executed murderer in?";
choices[2] = new Array();
choices[2][0] = "Monster's Ball";
choices[2][1] = "Living Dolls";
choices[2][2] = "Why Do Fools Fall in Love";
answers[2] = choices[2][0];
