// Jquery Fade by TomThorley.co.uk

    $(document).ready(function() {
        $('#portfolio-items li img').each(function() {
            $(this).hover(function() {
                $(this).stop().animate({ opacity: 0.4 }, 650);
            },
           function() {
               $(this).stop().animate({ opacity: 1.0 }, 650);
           });
        });
    });
  
  
     $(document).ready(function() {
        $('#social_icons img').each(function() {
            $(this).hover(function() {
                $(this).stop().animate({ opacity: 0.2 }, 650);
            },
           function() {
               $(this).stop().animate({ opacity: 1.0 }, 650);
           });
        });
    });
  
