$().ready( function() {

	var a = 1;
	var total = 0;
	
	$(".indicators").find('.text').each( function(){
		total++;
	});

	if(a < total){
		$.timer(8000, function (timer) {
			
			if(a < total) a++;
			else a = 1;

			$(".indicators").find('div.text').each( function(){
				$(this).fadeOut();
			});

			$('.indicator'+a).fadeIn();

			//timer.stop();

		});		
	}

});
