var Quotation=new Array()
Quotation[0] = "I like to learn about the past and better ways not to make mistakes.";
Quotation[1] = "Every day is interesting no matter what you're doing.";
Quotation[2] = "Hopefully I'll open my own company later on down the road.";
Quotation[3] = "It's a big thing for them to come here and have proms and dances, sports teams.";
Quotation[4] = "We had a trip to the General Assembly once. That was pretty neat.";
Quotation[5] = "And the teachers are very, very nice.";
Quotation[6] = "She just couldn't sit there in a class of 35 kids and take a written test.";
Quotation[7] = "They try to figure out how each kid learns best.";
Quotation[8] = "They devise a plan to educate each clild individually.";
Quotation[9] = "They make sure that the kids have a normal social life.";
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();
