$(document).ready(function(){
  $(".fb").mouseenter(function(){
    $(".fb").stop().animate({marginRight: '260px'}, 500);
  }).mouseleave(function() {$(".fb").stop().animate({marginRight: '0px'}, 500);});
});

