	$(document).ready(function(){
		$(".thumb img").click(function () {
			a = $(this).attr('src');
			t = $(this).attr('title');
			
			$(".display_fotos").fadeTo("fast", 0.05, function() {
				$(".display_fotos").html('<img src="'+a+'">');
				$(".text_fotos").html(t);
				$(".display_fotos").fadeTo("fast", 1.00);
			});
		});
	});