var questions = new Array();
var choices = new Array();
var answers = new Array();
var response = new Array();

questions[0] = "1) The Iranian &quot;fire festival&quot;  of <i>Sadeh</i> has its roots in?";
choices[0] = new Array();
choices[0][0] = "Ancient Zoastrian Times";
choices[0][1] = "Earliest Muslim beliefs";
choices[0][2] = "Pre-Muslim animist beliefs";
choices[0][3] = "Pagan Celtic beliefs";
answers[0] = choices[0][0];

questions[1] = "2) The emblem of the 2010 Winter Olympics is an &quot;Inukshuk&quot; that Inuit use to?";
choices[1] = new Array();
choices[1][0] = "Represent the Inuit Goddess Tootega";
choices[1][1] = "Communicate practical information about the environment";
choices[1][2] = "Represent the unity of mankind";
choices[1][3] = "As an open-arms sign of friendship and welcome";
answers[1] = choices[1][1];

questions[2] = "3) Duke Ellington's jazz symphony &quot;Black, Brown and Beige,&quot;  was dedicated to Haitians who fought?";
choices[2] = new Array();
choices[2][0] = "Against the British in the War of 1812";
choices[2][1] = "In the Cuban Revolution";
choices[2][2] = "For Haitian Independence against the French";
choices[2][3] = "Fought in the American Revolutionary War";
answers[2] = choices[2][3];

questions[3] = "4) The European Union country that has the highest per capita cheese consumption?";
choices[3] = new Array();
choices[3][0] = "France";
choices[3][1] = "Greece";
choices[3][2] = "Switzerland";
choices[3][3] = "Italy";
answers[3] = choices[3][1];

questions[4] = "5) The <i>Khudai Khidmatgars</i>, meaning &quot;servants of God&quot; were Muslim Pashtuns who?";
choices[4] = new Array();
choices[4][0] = "Violently opposed British Colonialism";
choices[4][1] = "Were an army of red-clad &quot;soldiers&quot; who believed in non-violent struggle";
choices[4][2] = "Protected non-muslims from communal violence";
choices[4][3] = "B & C above";
answers[4] = choices[4][3];

questions[5] = "6) The native language of Berbers who live in Morocco is?";
choices[5] = new Array();
choices[5][0] = "Amazigh";
choices[5][1] = "Arabic";
choices[5][2] = "Tamazight ";
choices[5][3] = "Berberian";
answers[5] = choices[5][0];

questions[6] = "7) In recent years many Russian Orthodox faithful have visited Israel to?";
choices[6] = new Array();
choices[6][0] = "Soak burial shrouds in water from the Jordan River";
choices[6][1] = "Plunge a cross into the River Jordan to celebrate Epiphany";
choices[6][2] = "See the Greek Orthodox Patriarch of Jerusalem release a dove of peace";
choices[6][3] = "All of the Above";
answers[6] = choices[6][3];

questions[7] = "8) The Asian population of Vancouver, Canada exceeds?";
choices[7] = new Array();
choices[7][0] = "5,000";
choices[7][1] = "100,000";
choices[7][2] = "600,000";
choices[7][3] = "1 million";
answers[7] = choices[7][2];

questions[8] = "9) Hispanics contributed to disaster relief efforts in Haiti because?";
choices[8] = new Array();
choices[8][0] = "Increased media attention in the Spanish language media";
choices[8][1] = "Of their close historical and language connections to Haiti";
choices[8][2] = "A shared sense of tragedy due to their home contrie's experience with disasters";
choices[8][3] = "A and C above";
answers[8] = choices[8][3];

questions[9] = "10) The Hanunuo Mangyan tribe in the Philippines sometimes honor their dead by?";
choices[9] = new Array();
choices[9][0] = "Digging up their remains and dressing them in clothing and jewelry";
choices[9][1] = "Performing the &quot;kutot&quot; ritual in which their living relatives dress up in the deceased clothing";
choices[9][2] = "Burning the clothing and other personal items of the deceased to release their souls";
choices[9][3] = "Dressing up in their deceased relative's clothing and singing at their grave sites";
answers[9] = choices[9][0];


// response for getting 100%
response[0] = "Excellent, Don't you feel just wonderful about your newly found knowledge of the world!";
// response for getting 90% or more
response[1] = "Excellent, Almost, but not quite perfect! Nice job!"
// response for getting 70% or more
response[2] = "Well done, that is a good score, I bet you can you do better!";
// response for getting over 50%
response[3] = "You got more than half of the questions right, guessing can be hazardous! Try again!";
// response for getting 40% or more
response[4] = "You got some questions right, perhaps you were reading too fast for your own good!";
// response for getting 20% or more
response[5] = "Some of the questions might have been a bit tricky, but not very.  Why not try again!?";
// response for getting 10% or more
response[6] = "Ok, did you just skim the Cultural Tidings articles? Try again!";
// response for getting 9% or less
response[7] = "Oh dear, Perhaps you should have actually read the Cultural Tidings articles before you took the quiz!";
