function scrollTo($sWhere){
    $('html, body').animate({
        scrollTop: $('#'+$sWhere).offset().top
    }, 500);    
}


$(document).ready(function(){
   
    $('.widget_social').hover(
        function(){
            $(".widget_social").stop(true, false).animate({right:"0"},"medium");
        },function(){
            $(".widget_social").stop(true, false).animate({right:"-205"},"medium");
        },500
   );
    
});

