		$(function(){
			
			$(".trabalhos a").css({opacity:0.5});
			$(".trabalhos a").hover(function(){
				$(this).stop().animate({opacity:3},600); // retirei css e coloquei animate
			}, function(){
				$(this).stop().animate({opacity:0.5}); // retirei css e coloquei animate
			});
			
			$(". trabalhos a").addClass("group")
			$(". trabalhos a").attr("rel","group")
			
			$(".trabalhos a").fancybox();
			
		});
