//change 5 to the total number of questions
var total=15
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]="Not bad"
compliments[2]="Nice work"
compliments[3]="keep going"
compliments[4]="Correct"
compliments[5]="well done"
compliments[6]="Good work"

question[1]="The Jeep Hurricane concept is capable of:"
choice1[1]="Vertical climbs"
choice1[2]="Turning on a dime"
choice1[3]="Jumping"
choice1[4]="Driving on water"

question[2]="who designed the Aston Martin DB9?"
choice2[1]="Wayne Cherry"
choice2[2]="Massimo Tamburini"
choice2[3]="Patrick le Quemont"
choice2[4]="Henrik Fisker"

question[3]="The Maybach Exelero was commissioned by which tire company?"
choice3[1]="Fulda"
choice3[2]="Michelin"
choice3[3]="Goodyear"
choice3[4]="Bridgestone"

question[4]="The Mini Traveller concept revived a classic. How many years has it been since the original?"
choice4[1]="25"
choice4[2]="35"
choice4[3]="45"
choice4[4]="55"

question[5]="Which manufacturer produced a concept designed entirely by women?"
choice5[1]="Ford"
choice5[2]="Honda"
choice5[3]="Saab"
choice5[4]="Volvo"

question[6]="Dodge produced a Viper V10 powered motorcycle in 2003. What was it called?"
choice6[1]="FireHawk"
choice6[2]="Tomahawk"
choice6[3]="Leadhawk"
choice6[4]="Missile"

question[7]="On the Jaguar AL Coupe concept, what does AL stand for?"
choice7[1]="Advanced Little"
choice7[2]="Advanced Lightweight"
choice7[3]="Active Lightweight"
choice7[4]="Active Little"

question[8]="The Jeep Treo concept from 2003 has how many rear seats?"
choice8[1]="1"
choice8[2]="2"
choice8[3]="3"
choice8[4]="4"

question[9]="The Audi RSQ concept featured in which movie?"
choice9[1]="Minority Report"
choice9[2]="Batman Begins"
choice9[3]="I, robot"
choice9[4]="Thunderbirds"

question[10]="The EDAG GenX concept from 2004 is unique in that it is the only sports car concept to have a:"
choice10[1]="Full bar"
choice10[2]="Bed"
choice10[3]="Toilet"
choice10[4]="Rear facing passenger seats"

question[11]="Which concept could be described as having two 'cockpits'."
choice11[1]="The Lamborghini Murcielago Barchetta"
choice11[2]="The Maserati Birdcage"
choice11[3]="The Fenomenon Stratos"
choice11[4]="The Lamborghini Concept S"

question[12]="The Mercedes F-400 Carving is so called because:"
choice12[1]="It looks as though it was carved from metal"
choice12[2]="It is named after John Carving"
choice12[3]="It's outer wheels bank when cornering"
choice12[4]="There is no concept called the F-400 Carving"

question[13]="On the Lincoln Mark X, the X stands for:"
choice13[1]="Generation X"
choice13[2]="10"
choice13[3]="Unknown"
choice13[4]="X marks the spot"

question[14]="Which of these concepts is very similar to the 2005 Peugeot 20Cup 3-wheeled concept?"
choice14[1]="The Peugeot Asphalte"
choice14[2]="The Peugeot Hoggar"
choice14[3]="The Peugeot RC"
choice14[4]="The Peugeot H2O"

question[15]="Final Question. Which of these cities does not host a  major International Auto Show?"
choice15[1]="Geneva"
choice15[2]="Tokyo"
choice15[3]="Frankfurt"
choice15[4]="Venice"

solution[1]="b"
solution[2]="d"
solution[3]="a"
solution[4]="c"
solution[5]="d"
solution[6]="b"
solution[7]="b"
solution[8]="a"
solution[9]="c"
solution[10]="b"
solution[11]="d"
solution[12]="c"
solution[13]="b"
solution[14]="a"
solution[15]="d"



