$(function (){
		$("div.facebook").hover(function(){
			$(this).stop(true, false).animate({right:"0"},"medium");
		},function(){
			$(this).stop(true, false).animate({right:"-205"},"medium");
		},500);
});
