var i = 1;
$(document).ready(function(){
	var total = parseInt($('.FormatacaoImagem3:last').attr("data-img"));
			
	$('img[data-img='+i+']').show();
	if($('img[data-img='+i+']').attr('tit') != ''){
		$('.SpaceLegendaFoto').html($('img[data-img='+i+']').attr('tit'));
	}else{
		$('.SpaceLegendaFoto').html('&nbsp;');
	}
	var efeito = false;
	
	
		
		
		
});
function refreshSetas(){
	if(i <= 1){
		$('#voltaFoto').hide();
	}else{
		$('#voltaFoto').show();
	}
	if(i >= $('.FormatacaoImagem3:last').attr("data-img")){
		$('#avancaFoto').hide();
	}else{
		$('#avancaFoto').show();
	}
}
