 var quo = new Array();
 quo.push("\"This could be the next giant step in the green revolution.\"");
 quo.push("\"It looks like there will be enough food for a growing planet.\"");
 quo.push("\"The trick is to have a turbulent down-flow and a turbulent up-flow.\"");
 quo.push("\"The amount of fertilizer provided can be predicted. That's never been done before.\"");
 quo.push("\"Dozens of oceanographers and engineers have worked for decades on this problem of vertical mixing.\"");
 quo.push("\"I can imagine subsistent colonies popping up, far removed from any land mass.\"");
 quo.push("\"An undergraduate could understand how this works.\"");
 quo.push("\"Someone call Peter Thiel - This makes seasteading possible.\"");
 quo.push("\"The earth just got bigger.\"");
 quo.push("\"The plow tills the land, and the upweller fertilizes the ocean.\"");
 quo.push("\"Given the size of the deep water resource, there seems to be no limit on how many billions of people that will benefit.\"");
 quo.push("\"Innovations like this may be the only hope for this disastrous economy.\"");
 quo.push("\"No doubt the deep ocean will be a major source of energy as well.\"");
 quo.push("\"This has to be done on a very large scale to be effective.\"");
 quo.push("\"A best buy for green projects.\"");
 var totalQuo = quo.push("\"This green initiative can actually make money. A lot of money.\"");
 
$(document).ready(function() {
	doTimer();

});
var nn = 1;
function doTimer()
{
t=setTimeout("fadeOutTime()",25000);
}
function fadeOutTime()
{
	$('#quotes p').fadeOut("slow");
	t=setTimeout("fadeInTime()",1000);
}
function fadeInTime()
{
	document.getElementById('quote').innerHTML = quo[nn];
	$("#quotes p").fadeIn("slow");
	nn = nn + 1;
	if (nn == totalQuo) nn = 0;
	t=setTimeout("fadeOutTime()",10000);
}

