
/* ------------- counter rotators --------------------*/

var currentCounter=1;
function rotateCounters()
{
	for(var j=1;j<=counters;j++)
	{
		$('counter'+j).className=(j!=currentCounter)?'Ehidden':'';
	}
	currentCounter+=1;
	if(currentCounter>counters){currentCounter=1;}
	window.setTimeout(rotateCounters,5000);
}
rotateCounters();