// JavaScript Document
jQuery(document).ready(function($) {
$('.social').each(function() {
            $(this).hover(function() {
                $(this).stop().animate({ opacity: 1.0 }, 200);
            },
           function() {
               $(this).stop().animate({ opacity: 0.5 }, 200);
           });
        });
 });