$(document).ready(function(){
	$('#i1').css({'z-index':'999999','left':'0'});
	$('.numbers').click(function(){
		id = $(this).attr('id').split('n');
		id = id[1];
		$('.numbers').not('#n'+id).animate({'width':'16px','font-size':'16px','height':'22px','margin-top':'22px','padding':'1px 0 0 5px'},900);
		$('.img_destaques').css({'z-index':'1'});
		$('#i'+id).css({'z-index':'999999'});
		$('#n'+id).animate({'width':'31px','height':'45px','font-size':'36px','margin-top':'-2px','padding':'2px 0 0 10px'},900);
		$('#i'+id).animate({'left':'0'},800,function(){$('.img_destaques').not('#i'+id).css({'left':'564px'});});
		clearInterval(t); t = setInterval(clic,5000);
	});
	i=2;
	function clic(){if(i>$('.img_destaques').length){i=1;} $('#n'+i).click(); i++;}
	t = setInterval(clic,5000);	$('#n1').click();
});
