//change 5 to the total number of questions
var total=8
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]="Migraine headaches may be caused by what?"
choice1[1]="A lack of blood supply to the head"
choice1[2]="Eye strain"
choice1[3]="Too much stress in your lifestyle"
choice1[4]="Allergies"

question[2]="What symptoms could you exhibit with lower back problems?"
choice2[1]="Impotency"
choice2[2]="swollen anckles"
choice2[3]="Cramps"
choice2[4]="Any of the above"

question[3]="What parts of the body are associated with the mid-back?"
choice3[1]="Heart, Lungs, Hands"
choice3[2]="Stomach, Liver, Bladder"
choice3[3]="Spleen and Kidneys"
choice3[4]="All of the above"

question[4]="The cervical spine is in what section of the back?"
choice4[1]="Neck"
choice4[2]="Mid-back"
choice4[3]="Low-back"
choice4[4]="Pelvis"

question[5]="The lumber spine is in what section of the back?"
choice5[1]="Neck"
choice5[2]="Mid-back"
choice5[3]="Low-back"
choice5[4]="Pelvis"

question[6]="How many vertabrae are in the spine?"
choice6[1]="12"
choice6[2]="24"
choice6[3]="23"
choice6[4]="26"

question[7]="In what area of the spine is vertabrae T3?"
choice7[1]="Cervical"
choice7[2]="Thoracic"
choice7[3]="Lumbar"
choice7[4]="Sacrum"

question[8]="The spinal cord is in what part of our 3 part nervous system?"
choice8[1]="The Peripheral Nervous System"
choice8[2]="The Autonomic Nervous System"
choice8[3]="The Central Nervous System"
choice8[4]="None of the above"

solution[1]="a"
solution[2]="d"
solution[3]="d"
solution[4]="a"
solution[5]="c"
solution[6]="b"
solution[7]="b"
solution[8]="c"

