$(document).ready(function(){
    $('.servicios img').hover(function(){
    $(this).stop().animate({"opacity" : .7});
    }, function(){
    $(this).stop().animate({"opacity" : 1});
    });
});
