var Quotation=new Array() // do not change this!

Quotation[0] = "We're both teachers in our twenties; with two incomes we make just more than what 40B allows to qualify for an 'affordable' unit, but the reality is that housing is far too expensive for us even with two paychecks. We can't even afford to live in the town we both teach in!";
Quotation[1] = "My husband died a few years ago and I can't afford to pay my rent. I don't have much of a nest egg, but the state must think it's big enough. I try to get by on social security but things are just so expensive!";
Quotation[2] = "I come from a low income background and was the first one ever to go to college in my family. Graduating was the proudest accomplishment of my life. I took night classes to earn my degree because I needed to work full-time during the day to support myself.";
Quotation[3] = "I just got divorced and my income isn't enough to afford a place on my own. Before, we could get by with our two incomes to pay rent. Now it's hard to find a new place that is affordable for me that is anywhere close to the kids.";

var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();

