//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]="What sound in English (British) is similar to Japanese 'a'?"
choice1[1]="'a' in cat"
choice1[2]="'a' in father"
choice1[3]="'a' in about"
choice1[4]="'u' in put "

question[2]="What sound in English (British) is similar to Japanese 'e'?"
choice2[1]="'ee' in sheep"
choice2[2]="'i' in bit"
choice2[3]="'i' in happy"
choice2[4]="'e' in bed"

question[3]="What sound in English (British) is similar to Japanese 'i'?"
choice3[1]="'ee' in sheep"
choice3[2]="'e' in bed"
choice3[3]="'i' in bit"
choice3[4]="'i' in happy"

question[4]="What sound in English (British) is similar to Japanese 'o'?"
choice4[1]="'o' in note"
choice4[2]="'ow' in now"
choice4[3]="'o' in dog"
choice4[4]="'oy' in boy"

question[5]="What sound in English (British) is similar to Japanese 'u'?"
choice5[1]="'u' in but"
choice5[2]="'u' in put"
choice5[3]="'u' in actuality"
choice5[4]="'o' in boot"

question[6]="What sound in English (British) is similar to Japanese 'f'?"
choice6[1]="Same like English f sound."
choice6[2]="Same like English v sound."
choice6[3]="Produced by drawing the lips together, blowing lightly."
choice6[4]="Produced by putting lower teeth against lower lip."

question[7]="What sound in English (British) is similar to Japanese 'g' like gakkoo (school)?"
choice7[1]="'e' in get" 
choice7[2]="'l' in left" 
choice7[3]="'g' in sing" 
choice7[4]="'g' in get" 

question[8]="What sound in English (British) is similar to Japanese 'g' like Ringo (apple)?"
choice8[1]="'e' in get"
choice8[2]="'s' in sing"
choice8[3]="'g' in sing"
choice8[4]="'g' in get"

question[9]="What sound in English (British) is similar to Japanese 'r'?"
choice9[1]="more like an 'l' than an 'r'"
choice9[2]="more like an 'r' than an 'l'"
choice9[3]="put the tip of the tongue against the gum behind the lower front theeth "
choice9[4]="Produced by putting lower teeth against lower lip."

question[10]="What the meaning of 'Ojisan'? "
choice10[1]="Grandfather"
choice10[2]="Grandmother"
choice10[3]="Aunt or Middle aged man"
choice10[4]="Uncle"

question[11]="What the meaning of 'Ojiisan'? "
choice11[1]="Grandfather"
choice11[2]="Grandmother"
choice11[3]="Aunt"
choice11[4]="Uncle"

question[12]="What the meaning of 'Yuuki'? "
choice12[1]="snow"
choice12[2]="you"
choice12[3]="brave"
choice12[4]="cake"

question[13]="What the meaning of 'Yuki' "
choice13[1]="snow"
choice13[2]="brave"
choice13[3]="float"
choice13[4]="you"

solution[1]="b"
solution[2]="d"
solution[3]="d"
solution[4]="c"
solution[5]="b"
solution[6]="c"
solution[7]="d"
solution[8]="c"
solution[9]="a"
solution[10]="d"
solution[11]="a"
solution[12]="c"
solution[13]="a"


