//change 5 to the total number of questions
var total=20
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 r a genius!"
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]="On what day did God create the sun and the moon?"
choice1[1]="seventh."
choice1[2]="sixth."
choice1[3]="fifth"
choice1[4]="fourth."

question[2]="Who was the oldest person in the bible?"
choice2[1]="Melchisedek"
choice2[2]="Hezekiah"
choice2[3]="Methuselah"
choice2[4]="Rehoboam"

question[3]="Who were Noah's sons?"
choice3[1]="Cain, Abel,Seth"
choice3[2]="Shem,Ham,Japheth"
choice3[3]="Reuben,Joseph,Benjamin"
choice3[4]="Shadrach,Meschach,Abednego"

question[4]="which one of these was NOT a plague God sent to Egypt?"
choice4[1]="ants"
choice4[2]="flies"
choice4[3]="frogs"
choice4[4]="locusts"

question[5]="the fifth commandment is ?"
choice5[1]="honour thy father and mother"
choice5[2]="thou shalt not steal"
choice5[3]="thou shalt not kill"
choice5[4]="thou shalt not take the name of the lord thy god in vain"



question[6]="how many tribes of Israel were there ?"
choice6[1]="ten"
choice6[2]="eleven"
choice6[3]="twelve"
choice6[4]="thirteen"

question[7]="David played which instrument ?"
choice7[1]="guitar"
choice7[2]="violin"
choice7[3]="harp"
choice7[4]="clarinet"

question[8]="Solomon asked God for ?"
choice8[1]="patience"
choice8[2]="courage"
choice8[3]="strength"
choice8[4]="wisdom"

question[9]="which of these was NOT a gate in Jerusalem's wall ?"
choice9[1]="sheep gate"
choice9[2]="dung gate"
choice9[3]="merchants gate"
choice9[4]="fish gate"

question[10]="how many books of the bible are named after women ?"
choice10[1]="one"
choice10[2]="two"
choice10[3]="three"
choice10[4]="four"

question[11]="which of the folowing is NOT from the bible ?"
choice11[1]="no man can serve two masters"
choice11[2]="pride goes before a fall"
choice11[3]="a merry heart does good like a medicine"
choice11[4]="a fool and his money are soon parted"

question[12]=" God told Jonah to go to the people of ?"
choice12[1]="Assyria"
choice12[2]="Nineveh"
choice12[3]="Babylon"
choice12[4]="Canaan"

question[13]="which of these is not a book of the bible ?"
choice13[1]="Hezekiah"
choice13[2]="Jeremiah"
choice13[3]="Zephaniah"
choice13[4]="Isaiah"

question[14]="Jesus fed the five thousand with .. ?"
choice14[1]="five loaves and two fish"
choice14[2]="two loaves and five fish"
choice14[3]="four loaves and two fish "
choice14[4]="5000 happy meals"

question[15]=" how many books in the new testament?"
choice15[1]="29"
choice15[2]="28"
choice15[3]="27"
choice15[4]="26"

question[16]="what was Matthew's original name ?"
choice16[1]="Levi"
choice16[2]="Saul"
choice16[3]="Amos"
choice16[4]="Enos"

question[17]="How many of the ten lepers Jesus healed returned to say thanks ?"
choice17[1]="8"
choice17[2]="6"
choice17[3]="3"
choice17[4]="1"

question[18]="who was the first martyr ?"
choice18[1]="Simon"
choice18[2]="Stephen"
choice18[3]="Paul"
choice18[4]="Andrew"

question[19]="Paul's home town was ?"
choice19[1]="Damascus"
choice19[2]="Tarsus"
choice19[3]="Corinth"
choice19[4]="Laodicea"

question[20]="How may churches did John address in Revelations ?"
choice20[1]="4"
choice20[2]="5"
choice20[3]="6"
choice20[4]="7"


solution[1]="d"
solution[2]="c"
solution[3]="b"
solution[4]="a"
solution[5]="a"
solution[6]="c"
solution[7]="c"
solution[8]="d"
solution[9]="c"
solution[10]="b"
solution[11]="d"
solution[12]="b"
solution[13]="a"
solution[14]="a"
solution[15]="c"
solution[16]="a"
solution[17]="d"
solution[18]="b"
solution[19]="b"
solution[20]="d"