$(function(){
	$('#trabajos_peq article').hover(function(){
			$(this).find('.resumen').show();	
			$(this).find('img').animate({opacity : 0.2});			
		},function(){
			$(this).find('.resumen').hide();
			$(this).find('img').animate({opacity : 1});			
		});

	$('#trabajos article').hover(function(){
			$(this).find('.resumen').show();	
			$(this).find('img').animate({opacity : 0.2});			
		},function(){
			$(this).find('.resumen').hide();
			$(this).find('img').animate({opacity : 1});			
		});

	$("#link-contacto").colorbox({width:"500px", inline:true, href:"#contacto"});

});

