mypic = new Array(23);
answer = new Array(23);

mypic[0]="What was leading man Ronald Reagan doing on the ISU campus in the spring of 1958?";
answer[0]="Leading the Veishea parade; then-film star Reagan was grand marshal.";
mypic[1]="In what decade did swan duo Lancelot and Elaine arrive at Lake LaVerne?";
answer[1]="The swans ceremoniously arrived via barge during Veishea 1935.";
mypic[2]="How did the only woman in the class of 1880 leave her mark on the world?";
answer[2]="Carrie Chapman Catt led the movement to give American women the vote.";
mypic[3]="What did J. Atanasoff concoct in the Physics Hall basement with a mile of wire and 300 vacuum tubes?";
answer[3]="John Atanasoff and grad student Clifford Berry invented the first digital electronic computer.";
mypic[4]="What ISU '60s invention has left its mark round and round the countryside?";
answer[4]="ISU ag engineer Wesley Buchele patented the idea for the large round hay baler.";
mypic[5]="In the '40s, ISU scientists and an Iowa manufacturer teamed to create what colorful food product?";
answer[5]="Maytag heir Fred Maytag II used an ISU process to create Maytag Blue Cheese.";
mypic[6]="ISU alumnus Thomas Whitney started the slide rule's slide into oblivion. How?";
answer[6]="He led the Hewlett-Packard team that built the first pocket calculator.";
mypic[7]="Why did die-hard fans ditch the school colors of silver, yellow and black in 1899?";
answer[7]="It was too hard to dye sweaters those colors. Cardinal and gold got the nod.";
mypic[8]="What Cyclone champion made the cover of a cereal box in 2002?";
answer[8]="Cael Sanderson graced the Wheaties box after winning his fourth NCAA wrestling title without a loss.";
mypic[9]="What Meg Ryan/Russell Crowe movie was partly inspired by ISU alum Thomas Hargrove's book?";
answer[9]="'Proof of Life' was partly based on Hargrove's 'Long March to Freedom'.";
mypic[10]="What newspaper's 'Struck by a Cyclone' headline gave the Cyclones their name?";
answer[10]="The Chicago Tribune headline noted ISU's crushing 1895 football win over Northwestern.";
mypic[11] =" What Iowa State student exhibited two paintings in the 1893 World's Fair?"; 
answer[11] = "George Washington Carver, who would go on to become a world famous plant scientist.";
mypic[12] = "What were IBM Dances, held at Iowa State in the '60s?";
answer[12] = "An early form of electronic matchmaking, using the Computer Center's IBM computer.";
mypic[13] = "When did ISU officials remove the curfew for women students?";
answer[13] = "Curfews were abandoned for women students in 1970.";
mypic[14] = "What future fuel did ISU researchers pioneer in the 1930s?";
answer[14] = "Chemical engineer Orland Sweeney led the development of gasohol, a blend of gasoline and corn-based ethanol.";
mypic[15] = "ISU alum Bruce Roth invented the largest-selling drug in pharmaceutical history. What is it?";
answer[15] = "Roth invented atorvastatin, better known as Lipitor, which lowers cholesterol levels.";
mypic[16] = "What was Iowa State's role in the Manhattan Project during WWII?";
answer[16] = "ISU scientists developed the process for and produced much of the high-purity uranium used in the first controlled nuclear chain reaction.";
mypic[17] = "What Veishea treat churned up a cool business for  ISU students?";
answer[17] = "Nitro Freeze ice cream, the smooth treat upon which the  Blue Sky Creamery franchise was built.";
mypic[18] = "To which of these athletics conferences has ISU belonged: Missouri Valley, Big Six, Big Seven, Big Eight, Big 12?";
answer[18] = "All of the above.";
mypic[19] = "What's the name of the tiny steam engine that connected Ames to Iowa State in the late 1800s?";
answer[19] = "The Dinkey.";
mypic[20] = "What famous artist designed the large murals in the Iowa State library?";
answer[20] = "Grant Wood.";
mypic[21] = "What Cyclone track star was the first Arabic and first Muslim woman to win Olympic gold?";
answer[21] = "400-meter hurdler Nawal El Moutawakel won gold for her home country, Morocco, in 1984.";
mypic[22] = "How many women were among 26 students in Iowa State's first graduating class?";
answer[22] = "Two women graduated in the class of 1872.";

var index = Math.floor(Math.random() * mypic.length);

document.write("<div class=\"iqq\"><p>" + mypic[index] + "</p></div>");
document.write("<div class=\"iqa\"><div id=\"answer\"><a href=\"http://www.iastate.edu/~isu150/quiz/a" + index + ".html\" onclick=\"toggle(\'noanswer\'); return false;\" target=\"_blank\">ANSWER.</a></div>");
document.write("<p id=\"noanswer\">" + answer[index] + "</p>");
document.write("</div>");








