<!-- Begin
var howMany = 6 //really is LAST INDEX or (number of elements - 1 since it is zero-indexed)
var fact = new Array(howMany+1)
fact[0]="The Print Shop serves 600-800 students a day and makes 2.5 million copies a year."
fact[1]="Employees at the Child Development Center change 19,000 diapers a year."
fact[2]="The MOSAIC Cross Cultural Center's current location was once an art gallery and the Student Health Center's Condom co-op."
fact[3]="The MOSAIC Cross Cultural Center offers students space for prayer and breast feeding."
fact[4]="The MOSAIC Cross Cultural Center got its name from Mariela Garcia, a student who won a naming contest for the center in 1999. MOSAIC was originally an acronym that stood for \"Multicultural Opportunities and Student Awareness In different Cultures.\""
fact[5]="MOSAIC offers diversity training, team building, and time management workshops."
fact[6]="MOSAIC offers funding assistance for student groups, departments, and programs whose project/program relates to encouraging inclusion and diversity on campus."




function rndnumber(){
var randscript = -1
while (randscript < 0 || randscript > howMany || isNaN(randscript)){
randscript = parseInt(Math.random()*(howMany+1))
}
return randscript
}
quo = rndnumber()
quox = fact[quo]
// document.write(quox)
// End -->
