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