var scc = new Array();
scc[0] = new Array('images/celebr(08).gif', '5000');
scc[1] = new Array('images/particip(08).gif', '3000');
scc[2] = new Array('images/scc.gif', '3000');

function rotateSCC(index) {
	document.getElementById('sccpic').src = scc[index][0];
	index = (index + 1) % 3;
	setTimeout('rotateSCC(' + index + ")", scc[index][1]);
}