jQuery(function (){
    //facebook widget

    jQuery(".widget_social").hover(function(){

        jQuery(".widget_social").stop(true, false).animate({right:"0"},"medium");

    },function(){

        jQuery(".widget_social").stop(true, false).animate({right:"-205"},"medium");

    },500);
    
    jQuery(".sale").hover(function(){

        jQuery(".sale").stop(true, false).animate({left:"0"},"medium");

    },function(){

        jQuery(".sale").stop(true, false).animate({left:"-205"},"medium");

    },500);

    return false;
});
