var fbW = function fbWidget(){
  $(document).ready(function() {
    $("#fbWidget").hover(function(){
      $(this).stop();
      $(this).animate({left:0},350);
    }, function(){
      $(this).stop();
      $(this).animate({left:"-185px"},550);
    });;
  });
};
fbW();
