jQuery(document).ready(function(){
	jQuery('#facebook-wrapper').hover(function(){

		jQuery(this).stop().animate({right:0},1000);
		
	},function(){
		
		jQuery(this).stop().animate({right:'-300px'},1500);
		
	});
});
