// JavaScript Document
var ArNsr = new Array(10);
var i, j;
for (i = 0; i < ArNsr.length; i++) {
	  ArNsr[i] = new Array(5);
}

for (i = 0; i < ArNsr.length; i++){
	for (j = 0; j < 5; j++ )
	{
		ArNsr[i][j] = "Sorry, try again.";
	}
}

function updateAnswers() {

	ArNsr[0][2] = "Yes -- The Army brought in flamethrowers.";
	ArNsr[1][1] = "Yes -- Ohioan Warren G. Harding was the first to dispense with a horse.";
	ArNsr[2][0] = "No, in Dallas it was Lyndon B. Johnson.";
	ArNsr[2][1] = "No, Theodore Roosevelt was sworn in in Plymouth.";
	ArNsr[2][2] = "Yes -- New Haven's history doesn't include any inaugurations.";
	ArNsr[2][3] = "No, Grover Cleveland was sworn in in Buffalo.";
	ArNsr[3][4] = "Yes -- Neither justice, Bible nor 'So help me' is required by law.";
	ArNsr[4][1] = "Yes -- Pierce went with 'affirm.'";
	ArNsr[5][0] = "Yes -- They lured the mob outside with punch.";
	ArNsr[6][1] = "Yes -- Harrison held office only 30 days.";
	ArNsr[7][0] = "Yes. Washington's speech was shortest.";
	ArNsr[8][2] = "Yes. At 34 years, Marshall's tenure is also still the longest.";
	ArNsr[9][3] = "Yes. Jan. 20 was a Sunday.";
}

