$(document).ready(function() {
	$("#facebook-slider").mouseenter(function(){
		$(this).stop().animate({right:"0"},"medium");
	}).mouseleave(function(){
		$(this).stop().animate({right:"-205"},"medium");
	});
});

