<!-- 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] = "1) The next National Scout Jamboree will be ...";
choices[0] = new Array();
choices[0][0] = "in 2009 at Fort A.P. Hill, Virginia";
choices[0][1] = "cancelled due to legal issues surrounding military support";
choices[0][2] = "in 2010 at Fort A.P Hill, Virginia";
choices[0][3] = "announced later to throw off people not welcome";
answers[0] = choices[0][2];

questions[1] = "2) What is a CSP and how is it different from city-state strips ...";
choices[1] = new Array();
choices[1][0] = "a CSP is a modern version of a city-state strip";
choices[1][1] = "city-state strips only provide city and state and CSPs add the name of the Council";
choices[1][2] = "I do not know";
choices[1][3] = "Council Shoulder Patches give information about the heritage or location of a Council";
answers[1] = choices[1][3];

questions[2] = "3) The World Conservation Award ...";
choices[2] = new Array();
choices[2][0] = "is worn as a temporary piece of insignia";
choices[2][1] = "can only be earned by those who have earned the William T. Hornaday National Conservation Award";
choices[2][2] = "can only be worn by Cub Scouts and Boy or Varsity Scouts";
choices[2][3] = "is an obsolete award because ten years have passed since its introduction";
answers[2] = choices[2][0];

questions[3] = "4) The 50th Anniversary Acheivement Award...";
choices[3] = new Array();
choices[3][0] = "Cannot be worn any more on any BSA uniform - It has been too long since the award was given";
choices[3][1] = "Cannot be worn any more on any BSA uniform - It is no longer available through the Supply Division";
choices[3][2] = "Can be worn on any BSA uniform - however the strips are no longer available through the Supply Division";
choices[3][3] = "I do not know - I have not heard of such an award before";
answers[3] = choices[3][2];

questions[4] = "5) 'Spruce Green' and 'Kelly Green' describe...";
choices[4] = new Array();
choices[4][0] = "Two different shades of Exploring-Venturing uniforms which may be worn if serviceable";
choices[4][1] = "The same shade of Exploring-Venturing uniforms which may be worn if serviceable";
choices[4][2] = "The same shade of Exploring-Venturing uniforms but only the current version with shoulder loops may be worn";
choices[4][3] = "Venturing uniforms only because the old Exploring uniforms can no longer be worn by Venturers";
answers[4] = choices[4][0];

questions[5] = "6) The uniformed programs of the Boy Scouts of America are called:";
choices[5] = new Array();
choices[5][0] = "Cub Scouts, Webs Cub Scouts, Boy Scouts, Explorer Scouts, and Sea Scouts";
choices[5][1] = "Bluebirds, Boy Scouts, Sports Scouts, Land Scouts, Sea Scouts";
choices[5][2] = "Cub Scouts, Boy Scouts, Varsity Scouts, Venturers, Sea Scouts";
choices[5][3] = "Cub Scouts, Boy Scouts, Explorer Scouts (also called Explorers), Sea Scouts";
answers[5] = choices[5][2];

// response for getting 100%
response[0] = "Excellent, top marks!";
// response for getting 90% or more
response[1] = "Excellent! You have been visiting this site often -  try again to get 100%!"
// response for getting 70% or more
response[2] = "Well done, that is a good score, can you do better?";
// response for getting over 50%
response[3] = "Nice one, you got more than half of the questions right, can you do better?";
// response for getting 40% or more
response[4] = "You got some questions right, you can do better!";
// response for getting 20% or more
response[5] = "You didn't do too well, why not try again!?";
// response for getting 10% or more
response[6] = "That was pretty poor!  Try again to improve!";
// response for getting 9% or less
response[7] = "Oh man, I think you need to take a look at my recently added items (or try again)!";




