<!--
// Questions for Guessing Game
// by Matt Gravelle (matt@pineorchard.com)

var QuizCount=5

function typW(Word,Required,Reveal,wordsame){
	this.word=Word
	this.required=Required
	this.willreveal=Reveal
	this.revealed=false // Init
	this.wordsame=wordsame
}
function typH(hint,willhelp){
	this.hint=hint
	this.willhelp=willhelp
	this.revealed=false // Init
}
function GetQuiz(i,w,ImgData,hints){

	//Defaults
	ImgData[0]=""  // Filename (Reset)
	ImgData[1]=513 // Width
	ImgData[2]=369 // Height

	switch(i){
	case 0:
		ImgData[0]="gb53.gif"
		w[0] = new typW("You",false,[0],["We","They"])
		w[1] = new typW("can't",true,[1,0],["cant","cannot","can"])
		w[2] = new typW("squeeze",true,[2],["squeezing","sqeez","squeze","squeez"])
		w[3] = new typW("blood",true,[3])
		w[4] = new typW("from",true,[4,5])
		w[5] = new typW("a",false,[5])
		w[6] = new typW("turnip",true,[6,5])
		hints[0]=new typH("What kind of vegetable is standing in line?",[6])
		hints[1]=new typH("What are they donating?",[3])
		hints[2]=new typH("What are they trying to do to the vegetable?",[2,6])
		hints[3]=new typH("If you take a lemon in your hand and _______ it, you will get juice.",[2])
		hints[4]=new typH("When you shake hands with someone, it hurts if they _______ too hard.",[2])
		return
	case 1:
		ImgData[0]="gb21.gif"
		w[0] = new typW("Reading",true,[0],["read"])
		w[1] = new typW("between",true,[1,2],[])
		w[2] = new typW("the",false,[2],[])
		w[3] = new typW("lines",true,[2,3],["line"])
		hints[0]=new typH("What is the character drawing?",[3])
		hints[1]=new typH("What is the character doing with the book?",[0])
		return
	case 2:
		ImgData[0]="gb27.gif"
		w[0] = new typW("What's",false,[0],["Whats","What"])
		w[1] = new typW("good",true,[0,1,2,6,7])
		w[2] = new typW("for",true,[2,7])
		w[3] = new typW("the",false,[3])
		w[4] = new typW("goose",true,[3,4],["geese","duck","ducks"])
		w[5] = new typW("is",false,[5])
		w[6] = new typW("good",true,[0,1,5,6,7])
		w[7] = new typW("for",true,[7,8])
		w[8] = new typW("the",false,[8])
		w[9] = new typW("gander",true,[8,9])
		hints[0]=new typH("What kind of bird is it?",[4])
		hints[1]=new typH("Give the name of the male and female of this kind of bird?",[4])
		hints[2]=new typH("What do you call the male goose?",[9])
		hints[3]=new typH("He sees her eating it, so he thinks it is _______ for him also.",[1,6])
		return
	case 3:
		ImgData[0]="gb43.gif"
		w[0] = new typW("Good",true,[0,3],["Excellent","Better"])
		w[1] = new typW("fences",true,[1],["fence"])
		w[2] = new typW("make",true,[2],["makes","create"])
		w[3] = new typW("good",true,[0,3])
		w[4] = new typW("neighbors",true,[4],["neighbor"])
		hints[0]=new typH("What did they build?",[1])
		hints[1]=new typH("People who live near you are called ________.",[4])
		hints[2]=new typH("If you have a house, what helps keep others off your lawn?",[1])
		hints[3]=new typH("When people are nice, they are not bad. They are ______.",[0,3])
		hints[4]=new typH("What is the opposite of bad?",[0,3])
		hints[5]=new typH("When you want to do something, you figure out how to ______ it happen.",[2])
		hints[6]=new typH("What is another word for create or build?",[2])
		return
	case 4:
		ImgData[0]="gb59.gif"
		w[0] = new typW("Making",true,[0,1],["Make","Makes"])
		w[1] = new typW("a",false,[1,5])
		w[2] = new typW("mountain",true,[1,2],["mountains"])
		w[3] = new typW("out",true,[3,4,5],["from"])
		w[4] = new typW("of",false,[3,4,5])
		w[5] = new typW("a",false,[1,5])
		w[6] = new typW("mole",true,[6])
		w[7] = new typW("hill",true,[7],["hills","molehill"])
		hints[0]=new typH("What kind of animal is it?",[6])
		hints[1]=new typH("This animal burrows into the ground.",[6])
		hints[2]=new typH("What land feature towers above the rest of the land?",[2,7])
		hints[3]=new typH("What land feature could be 'rolling' or rounded?",[7])
		hints[4]=new typH("What land feature could be 'jagged' or shaped upward like a pyramid?",[2])
		hints[5]=new typH("What is the opposite of 'in'?",[3])
		hints[6]=new typH("What is another word for creating or building?",[1])
		return
	}
}
//-->