var howMany = 2 // number of quotes (end number)var quote = new Array(howMany+1)quote[0]='From June 2006 to June 2007, 7,322 UVa students provided over 304,000 hours of general community service and academic service learning work to the community.'quote[1]='1,630 UVa students engaged in academic service learning and 5,692 in general community service activities.'quote[2]='Over 2,300 UVa students provided more than 91,000 hours of service to CNCS special service area for 2007 which was programs reaching out to disadvantaged youth to help lower dropout rates and prepare them for college.'function rndnumber(){var randscript = -1while (randscript < 0 || randscript > howMany || isNaN(randscript)){randscript = parseInt(Math.random()*(howMany+1))}return randscript}quo = rndnumber()quox = quote[quo]document.write(quox)