﻿// enter quiz data here
// enter an arbitrary # of question objects into an array.
// each question object is of the form:
//		question : 'text of question'
//		answers : [ 'answer1', 'answer2', ... ]
//		correctAnswer : 0
// provide correctAnswer index, zero-based (i.e., the first one is 0)

var quizData =
	[
		/*{
			question :	"Which animal's eye is bigger than its brain?",
			answers : [	"An ostrich's", "A pig's", "A dog's", "An elephant's" ],
			correctAnswer : 0
		},
		{
			question :	"When offered a new pen, what will most people write first?",
			answers : [	"Their name", "Their dog's name", "Their spouse's name", "They will draw a spiral" ],
			correctAnswer : 0
		},
		{
			question :	"Which color has at least one English word that rhymes with it?",
			answers : [	"Purple", "Orange", "Silver", "Yellow" ],
			correctAnswer : 3
		},
		{
			question :	"On which day of the week will a month with a Friday the 13th begin?",
			answers : [	"Sunday", "Monday", "Wednesday", "Friday" ],
			correctAnswer : 0
		},*/
		{
			question :	"Suma los números de cualquiera de las dos caras opuestas de un dado(Como los de los juegos de mesa). Qué número sale?",
			answers : [	"5", "6", "7", "8" ],
			correctAnswer : 2
		},
		{
			question :	"Cuál de estos vehículos tiene más ruedas?",
			answers : [	"Una bici con ruedas de aprendizaje", "Un monociclo", "Una moto", "Un triciclo" ],
			correctAnswer : 0
		},
		{
			question :	"Cuál de éstos hechos históricos ocurrió más tarde?",
			answers : [	"La formación de La Tierra", "El comienzo de la I Guerra Mundial", "El descubrimiento de América", "El final de la Revolución americana" ],
			correctAnswer : 1
		},
		{
			question :	"Cuál de estas ciudades NO es la capital de su País?",
			answers : [	"Londres, Inglaterra", "Paris, Francia", "Moscú, Rusia", "Nueva York, USA" ],
			correctAnswer : 3
		}
/*
comment in to get more questions.
		,
		{
			question :	"Which animal's eye is bigger than its brain?",
			answers : [	"An ostrich's", "A pig's", "A dog's", "An elephant's" ],
			correctAnswer : 0
		},
		{
			question :	"When offered a new pen, what will most people write first?",
			answers : [	"Their name", "Their dog's name", "Their spouse's name", "They will draw a spiral" ],
			correctAnswer : 0
		},
		{
			question :	"Which color has at least one English word that rhymes with it?",
			answers : [	"Purple", "Orange", "Silver", "Yellow" ],
			correctAnswer : 3
		},
		{
			question :	"On which day of the week will a month with a Friday the 13th begin?",
			answers : [	"Sunday", "Monday", "Wednesday", "Friday" ],
			correctAnswer : 0
		},
		{
			question :	"Add together the numbers on any two opposite sides of a die (like the ones found in board games). What number is the result?",
			answers : [	"5", "6", "7", "8" ],
			correctAnswer : 2
		},
		{
			question :	"Which of these vehicles has the most wheels?",
			answers : [	"A bicycle with training wheels", "A unicycle", "A scooter", "A tricycle" ],
			correctAnswer : 0
		},
		{
			question :	"Which of these historic events occurred last?",
			answers : [	"The earth was formed", "World War I began", "Columbus discovered America", "The Amercian Revolution ended" ],
			correctAnswer : 1
		},
		{
			question :	"Which city is <u>not</u> the capital of its country?",
			answers : [	"London, England", "Paris, France", "Moscow, Russia", "New York, USA" ],
			correctAnswer : 3
		}
/*
end comment in.
*/
	];
	



