//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]="Julia Childs couldn't have got that one but you did!"
compliments[1]="Wow, you're really cooking!"
compliments[2]="You must have studied hard. Good job!"
compliments[3]="Yup, you're right."
compliments[4]="Wow, you're good!"
compliments[5]="Yeah that's right, but let's see you get the next one!"
compliments[6]="Good work!"
compliments[7]="Lesley herself would be proud"
compliments[8]="You didn't guess on that one did you?"
compliments[9]="Correct! I think we should have made this harder"
compliments[10]="You must be a chef to know that one!"


/*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://wsabstract.com/script/script2/comboquiz.htm for more info
*/

question[1]="What is the difference between a herb and a spice?"
choice1[1]="No difference. Simply two different ways in referring to the same thing."
choice1[2]="A herb is made from leaves and a spice is made from berries."
choice1[3]="A spice is made from leaves and a herb is made from berries"
choice1[4]="Herb is a guy's name and Spice is a girl's name."

question[2]="You can make the following substitutions when you are using dried basil vs fresh "
choice2[1]="1-tsp dried = 1-tbsp fresh"
choice2[2]="1-tsp dried = 1-tsp fresh"
choice2[3]="1-tbsp dried = 1-tsp fresh"
choice2[4]="1-tbsp dried = 3-tsp fresh"

question[3]="What is the hottest part of a chile pepper ?"
choice3[1]="skin"
choice3[2]="flesh"
choice3[3]="seeds"
choice3[4]="stems"

question[4]="What is the healthiest oil to use for cooking ?"
choice4[1]="Olive oil"
choice4[2]="Safflower oil"
choice4[3]="Vegetable oil"
choice4[4]="Motor oil (10W30)"

question[5]="What does the term braise mean ?"
choice5[1]="Deep fry"
choice5[2]="Stir fry"
choice5[3]="Broil"
choice5[4]="Cook food slowly in a small amount of liquid in a tightly covered pan"

question[6]="How much is in a dash ?"
choice6[1]="1/16-tbsp"
choice6[2]="1/16-tsp"
choice6[3]="1/16 of a smidgen"
choice6[4]="1/32-tsp"

question[7]="What takes the longest time to cook in a slow cooker ?"
choice7[1]="Meat"
choice7[2]="Hardy Fruit"
choice7[3]="Hardy vegetables"
choice7[4]="Everything.......It's a SLOW cooker"

question[8]="What internal temperature must chicken be cooked so that is safe to eat ?"
choice8[1]="160*F"
choice8[2]="170*F"
choice8[3]="180*F"
choice8[4]="190*F"

question[9]="How many teaspoons are in a tablespoon ?"
choice9[1]="2"
choice9[2]="2-1/2"
choice9[3]="3"
choice9[4]="4"

question[10]="What part of the chicken is the healthiest to eat ?"
choice10[1]="Drumsticks"
choice10[2]="Wings"
choice10[3]="Thigh"
choice10[4]="Breast"

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

