$().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();

		});		
	}
	*/
	
	jQuery.ajax({
		type: "POST",
		url: "modules/widgets/indicators-ajax.php",
		success: indicatorsResponse
	});
	
	tab = 0;
	$('#indicators').tabs({ selected: tab, fx: { opacity: 'toggle' } });

});

function indicatorsResponse(response){

	$('.indicators').html(response);
	
	tab = 0;
	$('#indicators').tabs({ selected: tab, fx: { opacity: 'toggle' } });

	return false;

}
