var howMany = 3
var quote = new Array(howMany+1)
quote[0]="Between 25 million and 56 million adults are unbanked (i.e. not using mainstream, insured financial institutions.)<br /><br />Source: Oversight Hearing on Financial Education and Literacy, 2004"
quote[1]="People in the 18 to 24 age bracket spend nearly 30% of their monthly income just on debt repayment - double the percentage spent in 1992 (10% of net income is a recommended amount for debt obligation).<br /><br />Source: Generation Broke: The Growth of Debt Among Young Americans"
quote[2]="Personal bankruptcies nearly doubled in the past decade, including more than 1.6 million people who filed for personal bankruptcy in 2003.<br /><br />Source: Annual Hawaii Economic and Financial Literacy Conference, 2004"
quote[3]="More than 9 in 10 adults and students believe it is important for the people of the United States to have a good understanding of economics. However, only half of high school students say they ever have been taught economics in school. <br /><br />Source: National Council on Economic Education, 2003 "
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)
