jQuery(function (){	
        //slider widget
        jQuery(".facebook").hover(function(){
            jQuery(".facebook").stop(true, false).animate({right:"0"},"medium");
        },function(){
            jQuery(".facebook").stop(true, false).animate({right:"-200"},"medium");
        },500);
    }); 

