//change 5 to the total number of questions
var total=13
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 must have studied Japanese hard. Good job!"
compliments[3]="Right on."
compliments[4]="Correct!"
compliments[5]="Great Job!"
compliments[6]="Good work!"
compliments[7]="Cool!"


/*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]="How do you say 'Hello' in Japanese (formal)?"
choice1[1]="Kon nichiwa"
choice1[2]="Ohayoo gozaimasu"
choice1[3]="Oyasumi"
choice1[4]="Doo itashimashite"

question[2]="How do you say 'Good morning' in Japanese (formal)?"
choice2[1]="Doozo"
choice2[2]="Doomo"
choice2[3]="Ohayoo gozaimasu"
choice2[4]="Oyasumi nasai"

question[3]="How do you say 'Good afternoon' in Japanese (formal/casual)?"
choice3[1]="Doozo"
choice3[2]="Ohayoo gozaimasu"
choice3[3]="Oyasumi nasai"
choice3[4]="Konnichwa"


question[4]="How do you say 'Good evening' in Japanese (formal/casual)?"
choice4[1]="Ohha"
choice4[2]="Konbanwa"
choice4[3]="Ohisaa"
choice4[4]="Ohisashiburi desu"

question[5]="How do you say 'Good night' in Japanese (formal)?"
choice5[1]="Hai"
choice5[2]="Doozo"
choice5[3]="Kon nichiwa"
choice5[4]="Oyasumi nasai"

question[6]="How do you say 'Good bye' in Japanese (formal)?"
choice6[1]="Hai"
choice6[2]="Sayoonara"
choice6[3]="Doo itashimashite"
choice6[4]="Ohayoo gozaimasu"

question[7]="How do you say 'How are you?' in Japanese (formal)? "
choice7[1]="Doomo"
choice7[2]="Ohisashiburi desu"
choice7[3]="Ogenki desuka"
choice7[4]="Ohha"

question[8]="How do you say 'Long time no seen' in Japanese (formal)?"
choice8[1]="Ohisashiburi desu"
choice8[2]="Oyasumi nasai"
choice8[3]="Bai bai"
choice8[4]="Arigatoo gozaimasu"


question[9]="How do you say 'Hello' in Japanese (casual)?"

choice9[1]="Ohayoo gozaimasu"
choice9[2]="Oyasumi"
choice9[3]="Hai/ya/doomo"
choice9[4]="Doo itashimashite"


question[10]="How do you say 'Good morning' in Japanese (casual)?"

choice10[1]="Doozo"
choice10[2]="Ohayoo"
choice10[3]="Doomo"
choice10[4]="Oyasumi nasai"


question[11]="How do you say 'Good bye' in Japanese (casual)?"
choice11[1]="Hai"
choice11[2]="Doo itashi mashite"
choice11[3]="Ohayoo gozaimasu"
choice11[4]="Bai/bai bai/ja/ja mata"

question[12]="How do you say 'How are you?' in Japanese (casual)? "

choice12[1]="Ohisashiburi desu"
choice12[2]="Doomo"
choice12[3]="Genki"
choice12[4]="Ohha"


question[13]="How do you say 'Long time no seen' in Japanese (casual)?"

choice13[1]="Oyasumi nasai"
choice13[2]="Bai bai"
choice13[3]="Arigatoo gozaimasu"
choice13[4]="Hisashiburi"


solution[1]="a"
solution[2]="c"
solution[3]="d"
solution[4]="b"
solution[5]="d"
solution[6]="b"
solution[7]="c"
solution[8]="a"
solution[9]="c"
solution[10]="b"
solution[11]="d"
solution[12]="c"
solution[13]="d"


