jQuery(document).ready(function() {

	jQuery.fx.interval = 20;

	jQuery('#shop').hover( function() {
				jQuery('#shop').stop().animate({
					right : '0px'
				}, 1000 ) },
	function() {
				jQuery('#shop').stop().animate({
					right : '-325px'
				}, 2000 ) }
	);
});

