var count = 1;
$().ready(function() {
	$("#circularesList").click(function(){document.location="clientes/";});
	$(".newsticker-jcarousellite").jCarouselLite({
		vertical: true,
		hoverPause:true,
		visible: 3,
		heightDiv: 98,
		auto:500,
		speed:3000
	});
	$("#foto li").each(function(){
				$(this).attr("id","li"+count)
				if (count > 1){$(this).css("opacity",0);$(this).hide('fast');}
				count++;
	});
	$("#foto ul").css("display","block");
	
	showTextCentral();
	setInterval(hideTextCentral,10000);

});
function hideTextCentral()
{
	$("#li"+count).animate({opacity:0},1000,function(){
											$(this).hide();
											//$(this).css("opacity",1);
											showTextCentral();
});
}


function showTextCentral(){
	count++;
	var obj = $("#li"+count);
	if (obj.length <= 0)
	{
		count = 0; 
		showTextCentral();
	}
	obj.show().animate({opacity:1},1000);	
}
