//change 5 to the total number of questions
var total=12
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]="Correct!"
compliments[1]="Correct!"

/*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]="Where did the Ten Commandments come from?"
choice1[1]="God gave them to Noah."
choice1[2]="God gave them to Moses."
choice1[3]="God gave them to Adam and Eve."

question[2]="What happened to the prophet Jonah?"
choice2[1]="He was thrown into a den of lions."
choice2[2]="He was thrown into a fiery furnace."
choice2[3]="He was swallowed by a giant fish."

question[3]="What happened to the prophet Daniel?"
choice3[1]="He was thrown into a den of lions."
choice3[2]="He was thrown into a fiery furnace."
choice3[3]="He was swallowed by a giant fish."

question[4]="How did Moses' mother save him from being killed by the evil pharaoh?"
choice4[1]="She hid him in a manger in the stable."
choice4[2]="She hid him in a basket floating in the river."
choice4[3]="She sent him out of Egypt with a caravan of traders."

question[5]="What happened to the three men Shadrach, Meshach and Abednego?"
choice5[1]="They were thrown into a den of lions."
choice5[2]="They were thrown into a fiery furnace."
choice5[3]="They were swallowed by a giant fish."

question[6]="Besides the Red Sea, what body of water did God part?"
choice6[1]="The Dead Sea."
choice6[2]="The Nile River."
choice6[3]="The Jordon River."

question[7]="Who named Moses?"
choice7[1]="His Father"
choice7[2]="His Mother"
choice7[3]="Pharaoh's daughter"

question[8]="And on the third day He rose again from the dead! What time of day did Jesus rise?"
choice8[1]="Before sunrise"
choice8[2]="Exactly at sunrise"
choice8[3]="Just after sunrise"

question[9]="When the Magi came to seek the child Jesus, where did they find him?"
choice9[1]="In a house"
choice9[2]="In a manger"
choice9[3]="In a tent"

question[10]="How many wives did King Solomon have?"
choice10[1]="1"
choice10[2]="100"
choice10[3]="700"

question[11]="How long will Jesus sit on the throne of David?"
choice11[1]="Never"
choice11[2]="1000 Years"
choice11[3]="Forever"

question[12]="What New Testament epistle was the only book written specifically to a woman?"
choice12[1]="James"
choice12[2]="2 John"
choice12[3]="Titus"

solution[1]="b"
solution[2]="c"
solution[3]="a"
solution[4]="b"
solution[5]="b"
solution[6]="c"
solution[7]="c"
solution[8]="a"
solution[9]="a"
solution[10]="c"
solution[11]="c"
solution[12]="b"
