$(function(){
$(".efecto").hover(
function(){
$(this).animate({opacity: 0.8}, 200);
},
function(){
$(this).animate({opacity: 1}, 200);
}
);

});

