//<![CDATA[
$(document).ready(function() {
	$('.foto').click(function(event) {
		event.preventDefault();
		$('#tela img').remove();
		$('<img />')
		.attr('src', $(this).attr('rel'))
		.css('opacity', '0.3')
		.appendTo('#tela')
		.animate({opacity: 1 }, 2000);
	});
});
// ]]>