$(document).ready(function() {
$('
')
.css({
opacity : 0.8,
width : $(document).width(),
height : $(document).height()
})
.appendTo('body').hide();
$('#foto_2').load(function(event) {
event.preventDefault();
$('#mascara').fadeIn(1000);
$('
Clique para fechar ')
.css({
left: ($(document).width()/2 - 250),
top: (120)
}).appendTo('body').click(function(){
$(this).fadeOut(1000);
$('#mascara').fadeOut(1500);
});
});
});