(function($) {
  Drupal.behaviors.rkSocialMedia = {
    attach: function (context, settings) {
      $('#fb-box').hover( //hover|toggle
          function() {
            $(this).stop(true).animate({right: 0}, 800);
          },
          function() {
            $(this).stop(true).animate({right: -292}, 500);
          }
      );
      $('#gp-box').hover( //hover|toggle
          function() {
            $(this).stop(true).animate({right: 0}, 800);
          },
          function() {
            $(this).stop(true).animate({right: -300}, 500);
          }
      );
    }
  };
})(jQuery);;

