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