var curr_testimonio = 0;
var total_testimonios = 0;

jQuery(document).ready(function($){
	$('#testimonios .testimonio').css({opacity:0});
	$('#testimonios .foto').css({top:170});
	total_testimonios = $('#testimonios .testimonio-wrapper').children().size();
	curr_testimonio = total_testimonios;
	StartTestimonios();
});

function StartTestimonios()
{
	var anterior = curr_testimonio;
	var $ = jQuery;
	
	$('#testimonios .fotos-wrapper .foto:nth-child('+anterior+')').animate({top:-170},500,function(){$('#testimonios .fotos-wrapper .foto:nth-child('+anterior+')').css({top:170});});
	if(++curr_testimonio==total_testimonios+1)curr_testimonio=1;
	$('#testimonios .fotos-wrapper .foto:nth-child('+curr_testimonio+')').animate({top:0},500);
	
	$('#testimonios .testimonio-wrapper .testimonio:nth-child('+anterior+')').animate({opacity:0},500,function(){
		$('#testimonios .testimonio-wrapper .testimonio:nth-child('+curr_testimonio+')').animate({opacity:100},500,function(){
			setTimeout(StartTestimonios,5000);
		});
	});
}
