var questions = new Array();
var choices = new Array();
var answers = new Array();
var response = new Array();

// To add more questions, just follow the format below.

questions[0] = "1. Whose suggestions are always \"a good thing\"?";
choices[0] = new Array();
choices[0][0] = "Ina Garten";
choices[0][1] = "Emeril Lagasse";
choices[0][2] = "Martha Stewart";
choices[0][3] = "Paula Deen";
choices[0][4] = "Gus Simpson";
answers[0] = choices[0][2];

questions[1] = "2. Who is \"Naked\" in name only, but actually wears clothes on television?";
choices[1] = new Array();
choices[1][0] = "Bobby Flay";
choices[1][1] = "Jamie Oliver";
choices[1][2] = "Jamie Deen";
choices[1][3] = "Paula Deen";
choices[1][4] = "Giada De Laurentiis";
answers[1] = choices[1][1];

questions[2] = "3. Never mind boy meets girl, this boy met a grill and is now known for his BBQ specialties.";
choices[2] = new Array();
choices[2][0] = "Emeril Lagasse";
choices[2][1] = "Mario Batali";
choices[2][2] = "Tyler Florence";
choices[2][3] = "Bobby Flay";
choices[2][4] = "Alton Brown";
answers[2] = choices[2][3];

questions[3] = "4. Whose 30-minute meals spawned cookbooks, magazines, television shows and Triscuit boxes?";
choices[3] = new Array();
choices[3][0] = "Gus Simpson";
choices[3][1] = "Martha Stewart";
choices[3][2] = "Paula Deen";
choices[3][3] = "Nigella Lawson";
choices[3][4] = "Rachael Ray";
answers[3] = choices[3][4];

questions[4] = "5. Whose enthusiastic \"Bam!\" catchphrase added spice and sizzle to the kitchen?";
choices[4] = new Array();
choices[4][0] = "Mario Batali";
choices[4][1] = "Emeril Lagasse";
choices[4][2] = "Martha Stewart";
choices[4][3] = "Bobby Flay";
choices[4][4] = "Giada De Laurentiis";
answers[4] = choices[4][1];

questions[5] = "6. Who started off as a \"Bag Lady\" and launched a \"Road Test\" for her sons?";
choices[5] = new Array();
choices[5][0] = "Paula Deen";
choices[5][1] = "Sandra Lee";
choices[5][2] = "Ina Garten";
choices[5][3] = "Giada De Laurentiis";
choices[5][4] = "Rachael Ray";
answers[5] = choices[5][0];

questions[6] = "7. Who's known for wearing orange clogs and shorts?";
choices[6] = new Array();
choices[6][0] = "Giada De Laurentiis";
choices[6][1] = "Mario Batali";
choices[6][2] = "Emeril Lagasse";
choices[6][3] = "Guy Fieri";
choices[6][4] = "Nigella Lawson";
answers[6] = choices[6][1];

questions[7] = "8. Who signs off every program by encouraging viewers to \"eat, drink and be\"?";
choices[7] = new Array();
choices[7][0] = "Martha Stewart";
choices[7][1] = "Ina Garten";
choices[7][2] = "Emeril Lagasse";
choices[7][3] = "Gus Simpson";
choices[7][4] = "Rachael Ray";
answers[7] = choices[7][3];

questions[8] = "9. Who was the original Domestic Goddess?";
choices[8] = new Array();
choices[8][0] = "Martha Stewart";
choices[8][1] = "Gus Simpson";
choices[8][2] = "Giada De Laurentiis";
choices[8][3] = "Rachel Ray";
choices[8][4] = "Nigella Lawson";
answers[8] = choices[8][4];

questions[9] = "10. Who caters the annual Governor’s Ball at the Academy Awards each year?";
choices[9] = new Array();
choices[9][0] = "Emeril Lagasse";
choices[9][1] = "Wolfgang Puck";
choices[9][2] = "Giada De Laurentiis";
choices[9][3] = "Martha Stewart";
choices[9][4] = "Ina Garten";
answers[9] = choices[9][1];



// response for getting 80%-100%
response[0] = " Top Chef\n\n Eat, drink and be proud of yourself!\n\n Celebrity chefs are rock stars in your book,\n and it's obvious you pay attention when\n cooking shows are on.";
// response for getting 40%-70%
response[1] = " Next Food Network Star\n\n You have potential as a cooking show aficionado.\n\n Maybe you're more mesmerized more by the food\n than the show hosts?"
// response for getting 0%-30%
response[2] = " Kitchen Nightmares\n\n Not a fan of cooking shows? \n\n We can tell. You wouldn't know Giada from Gus.\n Try watching sometime; you might learn a few new tricks.";