// Copyright 1996, Infohiway, Inc. (http://www.infohiway.com)
// Courtesy of SimplytheBest.net - http://simplythebest.net/scripts/
<!--
var statcount = 1;
function rotate() {
		var statcount2 = statcount + 1
		var stat = document.getElementById("stat-"+statcount);
		var statnext = document.getElementById("stat-"+statcount2);
		if (statcount < 4) {
			if (stat.style.display = 'block') {
				stat.style.display = 'none';
				statnext.style.display = 'block';
			} else {
				stat.style.display = 'block';
			}
			statcount++;

		} else {
			if (stat.style.display = 'block') {
				stat.style.display = 'none';
				document.getElementById("stat-1").style.display = 'block';
			} else {
				stat.style.display = 'block';
				document.getElementById("stat-1").style.display = 'block';
			}
			statcount = 1;
		}
		setTimeout("rotate()",4000);		
		
}
setTimeout("rotate()",4000);
// -->
