//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're smarter than a fifth grader!"
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]="What is this national landmark?"
choice1[1]="Old Goopy."
choice1[2]="Old Waterspout."
choice1[3]="Old Faithful"
choice1[4]="The Empire State Building."

question[2]="What bill is this president's picture on?"
choice2[1]="$20"
choice2[2]="$50"
choice2[3]="$100"
choice2[4]="$2"

question[3]="Who is the president in the picture?"
choice3[1]="Bill Clinton"
choice3[2]="Teddy Roosevelt"
choice3[3]="John Quincy Adams"
choice3[4]="Andrew Jackson"

question[4]="What is the fastest mammal?"
choice4[1]="Cheetah"
choice4[2]="Hyena"
choice4[3]="Horse"
choice4[4]="Grizzly bear"

question[5]="How fast can it go?"
choice5[1]="50 miles per hour"
choice5[2]="60 miles per hour"
choice5[3]="70 miles per hour"
choice5[4]="80 miles per hour"

question[6]="What is the fastest bird (flying)?"
choice6[1]="Bald eagle"
choice6[2]="Peregrine falcon"
choice6[3]="Seagull"
choice6[4]="Condor"

question[7]="How fast can it go?"
choice7[1]="50 miles per hour"
choice7[2]="100 miles per hour"
choice7[3]="30 miles per hour"
choice7[4]="200 miles per hour"


question[8]="What is the fastest bird (running)?"
choice8[1]="Penguin"
choice8[2]="Sandpiper"
choice8[3]="Velociraptor"
choice8[4]="Ostrich"

question[9]="How fast can it go?"
choice9[1]="50 miles per hour"
choice9[2]="45 miles per hour"
choice9[3]="30 miles per hour"
choice9[4]="20 miles per hour"

question[10]="What is the slowest mammal?"
choice10[1]="Pig"
choice10[2]="Sloth"
choice10[3]="Three-legged dog"
choice10[4]="Bear"




solution[1]="c"
solution[2]="a"
solution[3]="d"
solution[4]="a"
solution[5]="c"
solution[6]="b"
solution[7]="d"
solution[8]="d"
solution[9]="b"
solution[10]="b"
