/***** FOR QUIZ; Quiz Template *****/

// Set numberQuestionsToShow and everything else will auto update
// Remember that for totalNumberofQuestions start count at zero!
// For numberQuestionsToShow count starts at 1 (as normal)

var totalNumberofQuestions = 4;
var numberQuestionsToShow = 5;

// Link after final question
var finalConfMessage = "<a href=\"/argentina/\" target=\"_top\">Learn more about Argentina.</a>";

//Questions, Answer Radios and Right Answers - all ids in these arrays must match up

// The Questions
var questionBlock = new Array();
questionBlock[0] = 'Football (soccer) is Argentina’s most popular sport.';
questionBlock[1] = 'Buenos Aires is the largest city (population) in South America.';
questionBlock[2] = 'Avenido 9 de Julio, a street that winds through the center of downtown Buenos Aires is 10 lanes wide (5 on each side).';
questionBlock[3] = 'Argentina greatly benefited under the leadership of Carlos Saul Menem.';
questionBlock[4] = 'Perito Moreno, in Argentina, is one of the only glaciers in the world that is not retreating.';

// The Input Fields
var answerBlock = new Array()
answerBlock[0] = '<input type=\'radio\' name=\'answerChoice\' id=\'answerChoice\' value=\'0a\' />True<br /><input type=\'radio\' name=\'answerChoice\' id=\'answerChoice\' value=\'0b\' />False<br />';
answerBlock[1] = '<input type=\'radio\' name=\'answerChoice\' id=\'answerChoice\' value=\'1a\' />True<br /><input type=\'radio\' name=\'answerChoice\' id=\'answerChoice\' value=\'1b\' />False<br />';
answerBlock[2] = '<input type=\'radio\' name=\'answerChoice\' id=\'answerChoice\' value=\'2a\' />True<br /><input type=\'radio\' name=\'answerChoice\' id=\'answerChoice\' value=\'2b\' />False<br />';
answerBlock[3] = '<input type=\'radio\' name=\'answerChoice\' id=\'answerChoice\' value=\'3a\' />True<br /><input type=\'radio\' name=\'answerChoice\' id=\'answerChoice\' value=\'3b\' />False<br />';
answerBlock[4] = '<input type=\'radio\' name=\'answerChoice\' id=\'answerChoice\' value=\'4a\' />True<br /><input type=\'radio\' name=\'answerChoice\' id=\'answerChoice\' value=\'4b\' />False<br />';

// The Correct Answers
var rightAnswer = new Array()
rightAnswer[0] = 'True. In fact, Argentina has won the World Cup 6 times!';
rightAnswer[1] = 'False. Buenos Aires is the second largest city, with 11.96 million inhabitants living within the city limits! S&atilde;o Paulo, Brazil is the largest city.';
rightAnswer[2] = 'False.  At it’s widest point, Avenido 9 de Julio is <i>sixteen</i> lanes wide!';
rightAnswer[3] = 'True. Menem privatized all public services while in office leading to economic and social stability.';
rightAnswer[4] = 'True. Due to global warming, most glaciers are slowly shrinking, but Perito Moreno has not – yet.';

// Quiz Answers - start with a leading zero, then add a letter after each number matching up to the right answer in the inputs in the Answer Radios array
var quizAnswers = "0, 0a, 1b, 2b, 3a, 4a";
