//change 4 to the total number of questions
var total=4
var question=new Array()
for (i=1;i<=total+1;i++){
temp="choice"+i+"=new Array()"
eval(temp)
}
var solution=new Array()

/*Below lists the phrases that will be randomly displayed if the user correctly answers the question. You may extend or shorten this list as desired*/
var compliments=new Array()
compliments[0]="Excellent!"
compliments[1]="Wow, you're really rocking!"
compliments[2]="You must have studied hard. Good job!"
compliments[3]="Right on."
compliments[4]="Correct!"
compliments[5]="Great Job!"
compliments[6]="Good work!"


/*Below lists the questions, its choices, and finally, the solution to each question. Folow the exact format below when editing the questions. You may have as many questions as needed. Check doc at http://javascriptkit.com/script/script2/comboquiz.htm for more info
*/

question[1]="Clear all flammable material away from the fire for a minimum of _________ in all directions to prevent escape of the fire."
choice1[1]="1 foot"
choice1[2]="3 feet"
choice1[3]="5 feet"
choice1[4]="100 feet"

question[2]="Have a __________ available at the campfire site for preparing and extinguishing campfires."
choice2[1]="Shovel"
choice2[2]="Book"
choice2[3]="Ice chest"
choice2[4]="Hammer"

question[3]="Have a ______________ person in attendance at all times."
choice3[1]="Happy"
choice3[2]="Responsible"
choice3[3]="Reputable"
choice3[4]="Busy"

question[4]="Extinguish campfire with water, using the _____________________ method."
choice4[1]="Drown, stir and feel"
choice4[2]="Shake, rattle and roll"
choice4[3]="Hit or miss"
choice4[4]="Cut and run"


solution[1]="c"
solution[2]="a"
solution[3]="b"
solution[4]="a"


