$(function(){
    
    $('.social a').addClass('fade');
    
    $('.fade,.footer a img, .entry a img').hover(
        function(){
            $(this).fadeTo("fast", 0.75);
        },
        function(){
            $(this).fadeTo("fast", 1);
        }
    );
 
});
