var shoutOutWindow=0;

function shoutOutRotate() {
	setTimeout("shoutOutFlip("+(shoutOutWindow+1)+")",5000);
}

function shoutOutFlip(pane) {
	document.getElementById('shoutText1FR').style.display=pane==1?'block':'none';
	document.getElementById('shoutText2FR').style.display=pane==2?'block':'none';
	document.getElementById('shoutText3FR').style.display=pane==3?'block':'none';
	shoutOutWindow=(shoutOutWindow+1)%3;
	shoutOutRotate();
}

