/* This script and many more are available free online at
The JavaScript Source :: http://javascript.internet.com
Created by: James Crooke :: http://www.cj-design.com */

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) Which Paula Abdul hit did April and bridesmaid Kim dance to at their 6th grade talent show?";
choices[0] = new Array();
choices[0][0] = "Spellbound";
choices[0][1] = "Straight Up";
choices[0][2] = "Vibeology";
answers[0] = choices[0][2];

questions[1] = "2) What was the first video game that Dave and groomsman Bobby played together?";
choices[1] = new Array();
choices[1][0] = "Halo 3";
choices[1][1] = "Wii Sports";
choices[1][2] = "Super Mario Brothers 3";
answers[1] = choices[1][1];

questions[2] = "3) Which stuffed animal do both April and her maid of honor Amanda each have?";
choices[2] = new Array();
choices[2][0] = "Mr. Bear";
choices[2][1] = "Snoopy";
choices[2][2] = "Smurfette";
answers[2] = choices[2][1];

questions[3] = "4) Where is groomsman Martin originally from?";
choices[3] = new Array();
choices[3][0] = "Rosario, Argentina";
choices[3][1] = "Montevideo, Uruguay";
choices[3][2] = "Cabo San Lucas, Baja California";
answers[3] = choices[3][0];

questions[4] = "5) Which bridesmaid taught April to cheer?";
choices[4] = new Array();
choices[4][0] = "Michelle";
choices[4][1] = "Steph";
choices[4][2] = "Kim";
answers[4] = choices[4][0];

questions[5] = "6) What instrument did best man Andrew play in their high school & college band, Okay Samurai?";
choices[5] = new Array();
choices[5][0] = "Drums";
choices[5][1] = "Bass Guitar";
choices[5][2] = "Electric Guitar";
answers[5] = choices[5][0];

questions[6] = "7) Which cartoon characters did April and bridesmaid Julie dress up as for Halloween?";
choices[6] = new Array();
choices[6][0] = "Marcie and Peppermint Patty from Peanuts";
choices[6][1] = "Daphne and Velma from Scooby Doo";
choices[6][2] = "Jem and Kimber from Jem";
answers[6] = choices[6][1];

questions[7] = "8) What nickname does groomsman Don NOT call Dave?";
choices[7] = new Array();
choices[7][0] = "Daveeda";
choices[7][1] = "D-Dubs";
choices[7][2] = "Gib Evad";
answers[7] = choices[7][1];

questions[8] = "9) What dormitory did bridesmaid Steph and April live and meet in during their first year at UVA?";
choices[8] = new Array();
choices[8][0] = "Bonnycastle";
choices[8][1] = "Webb";
choices[8][2] = "Watson";
answers[8] = choices[8][2];

questions[9] = "10) What place do Dave and groomsman Jinsoo agree has the best burgers on the planet?";
choices[9] = new Array();
choices[9][0] = "The White Spot in Charlottesville";
choices[9][1] = "Taylor's Refresher in San Francisco";
choices[9][2] = "The Spotted Pig in New York";
answers[9] = choices[9][2];

questions[10] = "11) What former television show set in San Francisco did both April and bridesmaid Sarah enjoy?";
choices[10] = new Array();
choices[10][0] = "Full House";
choices[10][1] = "Eli Stone";
choices[10][2] = "Monk";
answers[10] = choices[10][1];

questions[11] = "12) What embarrassing moment did Dave capture groomsman Jeff doing on video while visiting Alcatraz?";
choices[11] = new Array();
choices[11][0] = "Accidentally getting his arm stuck in the bars of a jail cell";
choices[11][1] = "Doing a jumping uppercut off a park bench and falling down on his face";
choices[11][2] = "Getting reprimanded by a park ranger for yelling quotes from The Rock";
answers[11] = choices[11][1];




// response for getting 100%
response[0] = "Perfect Score! Now you have plenty of interesting facts to talk about during the cocktail hour. Thanks for playing!";
// response for getting 90% or more
response[1] = "Almost perfect! Thanks for playing!"
// response for getting 70% or more
response[2] = "Wow, you did pretty well. Thanks for playing!";
// response for getting over 50%
response[3] = "That's a pretty good score. Thanks for playing!";
// response for getting 40% or more
response[4] = "Not bad at all. Thanks for playing!";
// response for getting 20% or more
response[5] = "Not bad. Thanks for playing!";
// response for getting 10% or more
response[6] = "Wow, that was pretty bad. Are you sure you even know Dave and April? Anyway, thanks for playing!";
// response for getting 9% or less
response[7] = "Wow, that was pretty bad. Are you sure you even know Dave and April? Anyway, thanks for playing!";

