﻿var questions = new Array();
var choices = new Array();
var answers = new Array();
var response = new Array();

questions[0] = "1. What three towns are considered Inside Passage towns?";
choices[0] = new Array();
choices[0][0] = "Kodiak, Unalaska and Cold Bay";
choices[0][1] = "Kenai, Valdez and Cordova";
choices[0][2] = "Nome, Kotzebue and Barrow";
choices[0][3] = "Juneau, Sitka and Ketchikan";
answers[0] = choices[0][3];

questions[1] = "2. The U.S. bought Alaska in 1867 from Russia. Who initiated the purchase and how much per acre was paid for the land?";
choices[1] = new Array();
choices[1][0] = "Thomas Jefferson. $1 per acre.";
choices[1][1] = "Secretary of State William H. Seward. 2 cents per acre.";
choices[1][2] = "Calvin Coolidge. 50 cents per acre.";
choices[1][3] = "Herbert Hoover. $5 per acre.";
answers[1] = choices[1][1];

questions[2] = "3. Because of Seward's involvement and the state's harsh, rugged atmosphere, many people called Alaska Seward's Ice Box and Seward's __________";
choices[2] = new Array();
choices[2][0] = "Folly";
choices[2][1] = "Joke";
choices[2][2] = "Mistake";
choices[2][3] = "Blunder";
answers[2] = choices[2][0];

questions[3] = "4. Alaska has the largest national forest in the United States. What is its name?";
choices[3] = new Array();
choices[3][0] = "Brooks Range National Forest";
choices[3][1] = "Denali National Forest and Park";
choices[3][2] = "Tongass National Forest";
choices[3][3] = "Anchorage Preserve";
answers[3] = choices[3][2];

questions[4] = "5. True or False. The official state mineral of Alaska is oil.";
choices[4] = new Array();
choices[4][0] = "True";
choices[4][1] = "False";
answers[4] = choices[4][1];

questions[5] = "6. Where was gold first discovered in Alaska?";
choices[5] = new Array();
choices[5][0] = "Prince William Sound";
choices[5][1] = "The Yukon Territory";
choices[5][2] = "Arctic National Wildlife Refuge";
choices[5][3] = "Skagway";
answers[5] = choices[5][1];

questions[6] = "7. Alaska has the highest mountain peak in North America. What is the name of the mountain?";
choices[6] = new Array();
choices[6][0] = "Mount Ranier";
choices[6][1] = "Mount Rushmore";
choices[6][2] = "Mt. Tlingis";
choices[6][3] = "Mount McKinley";
answers[6] = choices[6][3];

questions[7] = "8. True or False. In addition to being called The Great Land, Alaska is also called America's Last Frontier.";
choices[7] = new Array();
choices[7][0] = "True";
choices[7][1] = "False";
answers[7] = choices[7][0];

questions[8] = "9. Juneau is the capital of Alaska. What is unique about this capital city unlike other U.S. capitals?";
choices[8] = new Array();
choices[8][0] = "It has moose roaming the streets";
choices[8][1] = "The streets are paved with Alaskan gold";
choices[8][2] = "The streets are lined with igloos";
choices[8][3] = "You can only get to the city by boat or by plane";
answers[8] = choices[8][3];

questions[9] = "10. Chamai! in Eskimo Yupik language means";
choices[9] = new Array();
choices[9][0] = "You owe me money";
choices[9][1] = "Hello!";
choices[9][2] = "Goodbye!";
choices[9][3] = "Have a nice day";
answers[9] = choices[9][1];


// response for getting 100%
response[0] = "Excellent, top marks!";
// response for getting 90% or more
response[1] = "Excellent, 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 dear, I think you need to go back to school (or try again)!";