
	var t;
	var currentStat = 1;
	var numStats = 0;
	
	statsScroller();

	function statsTimer() {
		/*
		* 	Displays the next stat
		*/
		
		$('#currentStats p:nth-child('+(currentStat+1)+')').hide();
		currentStat = currentStat + 1;
		if (currentStat > numStats) {
			currentStat = 1;	
		}
		$('#currentStats p:nth-child('+(currentStat+1)+')').show();
	}
	
	function statsScroller() {
		/*
		* 	Kicks off the current stats scroller on the Home Page
		*/
		
		if ($('#currentStats').is(":visible")) {
			numStats = $('#currentStats p').length;
			$('#currentStats p:first').show();
			t=setInterval("statsTimer()",8000);
		}
	}
	
