//<![CDATA[

window.onload = setup;

function setup() 
	{
   		testimonial = document.getElementsByTagName("blockquote");

		for (var i = 0; i < testimonial.length; i++)
			{ testimonial[i].style.display = "none"; }
		
		rotate();
	}

j = 0;

function rotate()
	{
		if (j > 0)
			{ testimonial[j-1].style.display = "none"; }
			
		if ( j >= testimonial.length) j = 0;

//		fade();
		testimonial[j].style.display = "block";

		j++;
		
		wait = setTimeout("rotate()", 8000);
	}


//col=255;
//function fade() { 
//	document.getElementById("fade").style.color="rgb(" + col + "," + col + "," + col + ")"; 
//	col-=5; if(col>0) setTimeout('fade()', 20); 
//}

//]]>