// GALERIA DE FOTOS v2.2.1
function carregou()
{
	setTimeout(function(){
		$(".fotoGrande").fadeIn();
		$('#legenda').fadeIn();
	}, 300);
	$('#loader').hide();
};
function amplia(imagem,id)
{
	$('#loader').show();
	
	var pasta = 'http://www.andreadoces.com.br/wp-content/gallery/participacoes/'+imagem;

	$('.fotoGrande').fadeOut('fast');
	
	
	
	$('#legenda').hide();
	
	setTimeout(function(){
		$('.fotoGrande').css('background', 'url('+pasta+') center no-repeat' );
		carregou();
		$('#legenda').html($('#mini'+id).attr('title'));
		
	}, 200);
	
};

