//change 5 to the total number of questions
var total=10
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]="Johnny Appleseed was not sick until he died."
choice1[1]="True"
choice1[2]="False"
choice1[3]=""
choice1[4]=""

question[2]="Some of the apple trees that Johnny Appleseed started from apple seeds are still living today, over 200 years later."
choice2[1]="True"
choice2[2]="False"
choice2[3]=""
choice2[4]=""

question[3]="Why did Johnny Appleseed plant apple seeds around the country?"
choice3[1]="to make America more beautiful"
choice3[2]="so that no one would be hungry"
choice3[3]="because he did not like oranges"
choice3[4]="to create more shade"

question[4]="During which season are apples harvested in America?"
choice4[1]="spring"
choice4[2]="summer"
choice4[3]="fall"
choice4[4]="winter"

question[5]="Which of the following is NOT a way to check that apples are ready for picking?"
choice5[1]="how firm the apple is"
choice5[2]="skin color"
choice5[3]="seeds"
choice5[4]="size"

question[6]="According to the new MyPyramid food guide pyramid, can a glass of apple juice count as one of your fruit servings?"
choice6[1]="Yes"
choice6[2]="No"
choice6[3]=""
choice6[4]=""

question[7]="Which one of these drinks is 100% juice (ALL fruit juice)?"
choice7[1]="orange ade"
choice7[2]="cranberry drink"
choice7[3]="powdered drink mix"
choice7[4]="apple juice"
choice7[5]="lemonade"
choice7[6]="soda"

question[8]="Growing children need to drink 8 to 12 cups of beverages each day.  Which one of these is not a healthy beverage to drink a lot of?"
choice8[1]="water"
choice8[2]="fruit juice"
choice8[3]="soda"
choice8[4]="milk"

question[9]="On the Apple Juice Web site, 'AJ' is what kind of animal?"
choice9[1]="moose"
choice9[2]="mouse"
choice9[3]="goose"
choice9[4]="reindeer"

question[10]="Which of these are added to apple juice?"
choice10[1]="color"
choice10[2]="pulp"
choice10[3]="sugar"
choice10[4]="none of these"

solution[1]="a"
solution[2]="a"
solution[3]="b"
solution[4]="c"
solution[5]="c"
solution[6]="a"
solution[7]="d"
solution[8]="c"
solution[9]="a"
solution[10]="d"


