
/* AUTO FONT COLOR CHANGER by: VHIN */
var vhinM;
var newColor = new Array(5);
var curColor = 0;
	newColor[0] = 'green';
	newColor[1] = 'cyan';
	newColor[2] = 'red';
	newColor[3] = 'lime';
	newColor[4] = 'yellow';

function rotateColor() {
	if (curColor == 4)
		curColor = 0;
	else
		++curColor;
	document.getElementById('cpShoutoutBox').style.color= newColor[curColor];
}

function startRotate() {
	if (vhinM != null)
		clearInterval(vhinM);
	vhinM = setInterval("rotateColor()", 300);
}
window.onload = startRotate();

