<!-- Paste this code into an external JavaScript file named: quiz_config.js  -->

/* 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] = "<hr />1) \"Hi! I am a mystery book writer. When I travel, the strangest thing always seems to happen...I find myself in a REAL mystery! Of course you know who I am! I'm Carole Marsh, also known as Mimi. But do you know my favorite color?\"<br />";
choices[0] = new Array();
choices[0][0] = "Yellow";
choices[0][1] = "Red";
choices[0][2] = "Blue";
choices[0][3] = "Purple";
answers[0] = choices[0][1];

questions[1] = "<hr />2) \"Hi! I'm Mimi's granddaughter. I love to travel with Mimi and Papa. I think it's fun when we find ourselves in the middle of a mystery! I like learning facts about the places we visit. Sometimes those facts help us solve the mystery! Do you know who I am?\"<br />";
choices[1] = new Array();
choices[1][0] = "Carole";
choices[1][1] = "Michele";
choices[1][2] = "Christina";
choices[1][3] = "Annie";
answers[1] = choices[1][2];

questions[2] = "<hr />3) \"Hi! I'm Christina's brother. I'm also Mimi's grandson. Funny things always happen to me in Mimi's mysteries. Once I jumped in a hot tub - in my underwear! I backed into a cactus at the Alamo! Yikes! I accidentally stuck a peanut in my sister's nose on our way to California when the mission bells were disappearing. Do you know who I am?\"<br />";
choices[2] = new Array();
choices[2][0] = "George";
choices[2][1] = "Bob";
choices[2][2] = "Michael";
choices[2][3] = "Grant";
answers[2] = choices[2][3];

questions[3] = "<hr />4) \"Howdy! I'll tell you right up front&mdash;you know me as Papa. I try to wrangle Mimi and the grandkids along on our adventures. I keep an eye on everybody, and try to keep them all out of trouble. It's not always easy! Mimi likes when I fly us to our destination. Do you know the name of our plane?\"<br />";
choices[3] = new Array();
choices[3][0] = "Crime Solvers";
choices[3][1] = "Flying Ace";
choices[3][2] = "Mystery Girl";
choices[3][3] = "High Flyer";
answers[3] = choices[3][2];

questions[4] = "<hr />5) Mimi, Papa, Christina, and Grant head north for a mystery adventure in Alaska! During what famous race does this mystery take place?<br />";
choices[4] = new Array();
choices[4][0] = "Grand Prix";
choices[4][1] = "Daytona 500";
choices[4][2] = "Iditarod";
choices[4][3] = "Iron Man Triathalon";
answers[4] = choices[4][2];

questions[5] = "<hr />6) In <em>The Mystery at Disney World</em>, where do Mick, Crystal, Grant, and Christina \"disappear\" to?<br />";
choices[5] = new Array();
choices[5][0] = "To Space Mountain";
choices[5][1] = "To the top of Cinderella's Castle";
choices[5][2] = "To Mickey's Toontown Fair";
choices[5][3] = "To the Spinning Teacups";
answers[5] = choices[5][1];

questions[6] = "<hr />7) Characters Christina, Grant, Sam, and Jake star in <em>The Mystery on the Mighty Mississippi.</em> They start at two ends of the Mississippi River and meet up in the middle. One of the starting places is at the Gateway Arch in St. Louis, Missouri.  Where is the other starting place? Hint: Look at a map if you need help!<br />";
choices[6] = new Array();
choices[6][0] = "New Orleans, Louisiana";
choices[6][1] = "San Francisco, California";
choices[6][2] = "Santa Fe, New Mexico";
choices[6][3] = "Pittsburg, Pennsylvania";
answers[6] = choices[6][0];

questions[7] = "<hr />8) In which mystery did Cyrus, Heather, Christina, and Grant use Scrabble letters to solve clues? Hint\: This mystery also included a lot of tall buildings and a very important lady!<br />";
choices[7] = new Array();
choices[7][0] = "<em>The Ghost of the Grand Canyon</em>";
choices[7][1] = "<em>The Mystery on the Freedom Trail</em>";
choices[7][2] = "<em>The Gosh-Awful Gold Rush Mystery</em>";
choices[7][3] = "<em>The Mystery in New York City</em>";
answers[7] = choices[7][3];

questions[8] = "<hr />9) \"I'm the newest member of the mystery solving family! I first appeared in <em>The Mystery at Jamestown.</em> I like adventures, too! Do you know my name?\"<br />";
choices[8] = new Array();
choices[8][0] = "Clue";
choices[8][1] = "Sunny";
choices[8][2] = "Blackbeard";
choices[8][3] = "Sam";
answers[8] = choices[8][0];

questions[9] = "<hr />10) Here's the big question:  Who can apply to be a character in a Carole Marsh Mystery?<br />";
choices[9] = new Array();
choices[9][0] = "Girls";
choices[9][1] = "Boys";
choices[9][2] = "Children in the United States";
choices[9][3] = "Children all around the world";
choices[9][4] = "All of the Above!";
answers[9] = choices[9][4];

// response for getting 100%
response[0] = "You are a true Carole Marsh Mysteries fan!";
// response for getting 90% or more
response[1] = "Almost perfect!  You are a great Carole Marsh Mysteries fan! Click OK to try again."
// response for getting 70% or more
response[2] = "Excellent work! Click OK to try for 100%!";
// response for getting over 50%
response[3] = "Good score! Can you do better? Click OK to try again.";
// response for getting 40% or more
response[4] = "You got half right! Can you do better? Click OK to try again.";
// response for getting 20% or more
response[5] = "You got some right. You can do better! Click OK to try again.";
// response for getting 10% or more
response[6] = "Good try! Click OK to try again.";
// response for getting 9% or less
response[7] = "I bet you did that on purpose! Click OK to try again.";
