jQuery.noConflict();
jQuery(document).ready(function(){
	var x=0;
	jQuery('#fb_widget').mouseover(function(){
		jQuery('#fb_widget').animate({
    		right: x
  		}, 400, function() {
    		if(x==0) x = -350;
			else x = 0;
 		});
	})
	jQuery('#fb_widget').mouseout(function(){
		jQuery('#fb_widget').animate({
    		right: x
  		}, 300, function() {
    		if(x==-350) x = 0;
			else x = -350;
 		});
	})
});
