$(document).ready(function() {
	$('#widget').hover(function() {
		$(this).stop(true, false).animate({
		right: '0px',
		}, {easing: 'easeInCubic'});
	}, function(){
			$(this).stop(true, false).animate({
			right: '-245px',
		}, {easing: 'easeInCubic'});
	});
});
