﻿                     
$(document).ready(function () {
                     $(".widget_fb").mouseover(function() {
                                                 $(".widget_fb").stop(true, false);
                                                 $(".widget_fb").animate({ right: "0" }, 300);
                                                 })
                     $(".widget_fb").mouseout(   
                                          function() {
                                                   $(".widget_fb").stop(true, false);
                                                   $(".widget_fb").animate({ right: "-204" }, 300);
                                                                  },500);
                     
                     })
 

