//change 5 to 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]="Wow, you're really rocking!"
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]="If you’re hoping a certain guy will ask you to a school dance, but another guy asks you first, do you:"
choice1[1]="Go with the guy who asked first"
choice1[2]="Keep him on hold while you wait to see if the other guy will ask, too"
choice1[3]="Tell him no and either wait for the guy you want to ask you or ask him yourself"
choice1[4]="Make other plans for that night, forget about the dance"

question[2]="If faced with a long-distance component of a relationship, would you:"
choice2[1]="Date others while  your true love is away"
choice2[2]="Stay true to your guy and try to find a way to be together"
choice2[3]="End the relationship – long-distance is too hard"
choice2[4]="Give up on love, it never works out"

question[3]="When you first get together with a guy, do you:"
choice3[1]="Assume it won’t last"
choice3[2]="Hope to have fun for a few weeks"
choice3[3]="Not think about the future at all"
choice3[4]="Feel sure it will last a lifetime"

question[4]="According to statistics, what kind of sites on the net are the most popular?"
choice4[1]="Adult content sites"
choice4[2]="Portal sites"
choice4[3]="Chat sites"
choice4[4]="News sites"

question[5]="As of June 1998, how much is Microsoft Chairman Bill Gates's net worth?"
choice5[1]="10 million US"
choice5[2]="10 billion US"
choice5[3]="35 billion US"
choice5[4]="50 billion US"

solution[1]="c"
solution[2]="a"
solution[3]="b"
solution[4]="b"
solution[5]="d"


