quotes = new Array(19);

quotes[0] = "''Poverty is the parent of revolution and crime.''<br>-Aristotle";
quotes[1] = "''He who has no house has no voice in society.''<br>-Anonymous";
quotes[2] = "''A poor man has no friends.''<br>-Anonymous";
quotes[3] = "''For the first time in our history it is possible to conquer poverty.''<br>-Lyndon B. Johnson, <i>Special Message to Congress</i>, 1964";
quotes[4] = "''[The] education and empowerment of women is the greatest weapon in the war against poverty.''<br>-Kofi Anna, U.N. Secretary General";
quotes[5] = "''To build a nation, build a school.''<br>-Amartya Sen, Nobel Prize-winning economist";
quotes[6] = "''One place for infectious diseases to hide is among the poor...''<br>-Paul Farmer, Harvard Medical School professor";
quotes[7] = "''Reducing corruption in developing countries by opening markets would be reason enough to liberalize, even if no other economic benefits materialized.''<br>-Amartya Sen, Nobel Prize-winning economist";
quotes[8] = "''...we have come increasingly to think of poverty in terms of disempowerment, or in terms of deprivation of basic human rights.''<br>-Peter Bell, President of CARE USA";
quotes[9] = "''The causes of poverty are interconnected.''<br>-Peter Bell, President of CARE USA";
quotes[10] = "''...increasing the opportunity for women and girls is probably the best single investment that we make in development of poor communities.''<br>-Peter Bell, President of CARE USA";
quotes[11] = "''...a government that advises by the rule of law, treats its citizens with respect, and provides services to the poor is likely to foster development.''<br>-Peter Bell, President of CARE USA";
quotes[12] = "''By and large, people in the U.S. live with such prosperity, at least relevant to a very large portion in the rest of the world, that it is difficult for us to imagine not having access to safe water to drink or to have access to a school...''<br>-Peter Bell, President of CARE USA";
quotes[13] = "''...poverty should be defined by an individual's inability to affect change in their lives.''<br>-Kathleen McHugh, Senior Management Support Specialist, 'Save the Children'";
quotes[14] = "''...focusing on education is going to have ripple effects, it will probably mitigate cases of HIV/AIDS...''<br>-Kathleen McHugh, Senior Management Support Specialist, 'Save the Children'";
quotes[15] = "''...just getting kids in school is going to have [a] long term positive effect''<br>-Kathleen McHugh, Senior Management Support Specialist, 'Save the Children'";
quotes[16] = "''People need money and nobody is there to give it to them, so there are microcredit programs.''<br>-Professor Muhammad Yunus, founder of Grameen Bank";
quotes[17] = "''Gender equality is more than a goal in itself. It is a precondition for meeting the challenge of reducing poverty...''<br>-Kofi Annan, Secretary-General of the United Nations";
quotes[18] = "''“Literacy is a bridge from misery to hope. It is a tool for daily life in modern society. It is a bulwark against poverty, and a building block of development...''<br>-Kofi Annan, Secretary-General of the United Nations";

index = Math.floor(Math.random() * quotes.length);

document.write(quotes[index]);