$(document).ready(function() {
$("#widget_facebook").hover(function() {
		$("#widget_facebook").stop(true, false).animate({ right: "-1" }, 500);
			},function(){
			$("#widget_facebook").stop(true, false).animate({ right: "-307" }, 500);
		},500);
		
		});
