/* Quotes javascript file */

var quote=new Array();

quote[0]='In Extra!, I find all the news that the Respectables find unfit to print. It is great therapy for me; it keeps my blood pressure down and my skull from going numb. <br /> &mdash;Studs Terkel';
quote[1]='I promote FAIR wherever I go. It is one of the most important pro-democracy projects in the United States. <br />&mdash;Barbara Ehrenreich';
quote[2]='FAIR acts almost alone as an advocate of democratic journalism. I cannot even conceive of what we would do without it. <br />&mdash;Robert W. McChesney ';
quote[3]='The arrival of Extra! each month is analogous to a collective report card for those in the business of journalism. It tells me which stories hit the mark, which missed, and why.  <br>&mdash;Jill Nelson';
quote[4]='I believe the work of FAIR is, indeed, extremely fair. Not only is the work of this fine organization well-researched and articulated, but it is necessary.  &mdash;Judy Muller';
quote[5]='Extra! is fearless and essential &mdash; and also utterly responsible, meticulous about accuracy both in detail and in content.... [FAIR is] the most consistent guardian we have not only of dissent but of impartiality. <br /> &mdash;Jonathan Kozol';

var speed=7000;    /*this is the time in milliseconds adjust to suit*/
var q=1;
function showQuote() {
	document.getElementById("quotes").innerHTML=quote[q];
	q++;
	if(q==quote.length) {
		q=0;
  }
}


if (document.getElementById("quotes")) {
	setInterval('showQuote()',speed);
}

