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