$(document).ready(function() {
    $('#content .ssb .social a img').live('mouseover mouseleave', function(event) {
      if (event.type == 'mouseover') {
        $(this).fadeTo('fast', 0.6);
      } else {
        $(this).fadeTo('fast', 1);
      }
    });   
});
