//change 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]="very good!"
compliments[2]="perfect right!"
compliments[3]="coincidental true"
compliments[4]="very right!"
compliments[5]="very good, far so!"
compliments[6]="super performance!"


/*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]="Question: When were the Maldives first time discovered by seafarers?"
choice1[1]="2000 before Christ"
choice1[2]="500 before Christ"
choice1[3]="200 after Christ"
choice1[4]="362 after Christ"

question[2]="Question: Ptolemäus describes the Maldives 150 after Christ as ...?"
choice2[1]="Maledive"
choice2[2]="Divi"
choice2[3]="Islands west of Ceylon"
choice2[4]="Dhivehi"

question[3]="Question: What was the earlier currency on the Maldives?"
choice3[1]="Ruphia"
choice3[2]="Coral-coins"
choice3[3]="Kauri-shells"
choice3[4]="Rufia"

question[4]="Question: Before the Maldivians became Moslems, their religion was ...?"
choice4[1]="Buddhism"
choice4[2]="Islam"
choice4[3]="Hinduism"
choice4[4]="Christian"

question[5]="Question: The first king of the Maldives was ?"
choice5[1]="Theemugey"
choice5[2]="Kalaminja"
choice5[3]="Rasgetimu"
choice5[4]="Koimala"

question[6]="Question: Whoever was the first sultan of the Maldives?"
choice6[1]="Koimala"
choice6[2]="Theemugey"
choice6[3]="Rasgetimu"
choice6[4]="Kalaminja"

question[7]="Question: From which year were all Maldives islands islamic?"
choice7[1]="1141"
choice7[2]="1153"
choice7[3]="1166"
choice7[4]="1314"

question[8]="Question: The most known report comes from Ibn Battuta in the years?"
choice8[1]="1166-1168"
choice8[2]="1313-1314"
choice8[3]="1343-1344"
choice8[4]="1400-1401"

question[9]="Question: How many sultan there was altogether on the Maldives?"
choice9[1]="89 male and 4 female"
choice9[2]="78 male and 3 female"
choice9[3]="93 male and no female"
choice9[4]="68 male and 1 female"

question[10]="Question: When did the first divers dive in the Maldives?"
choice10[1]="1952"
choice10[2]="1957"
choice10[3]="1965"
choice10[4]="1972"

solution[1]="b"
solution[2]="c"
solution[3]="c"
solution[4]="a"
solution[5]="d"
solution[6]="d"
solution[7]="b"
solution[8]="c"
solution[9]="a"
solution[10]="b"