$(document).ready(function () { //HTML DOM document is ready
	
	$(document).ready(function(){
		$('.shop_item').hover(function(){
			$(".cover", this).stop().animate({top:'66px'},{queue:false,duration:500});
		}, function() {
			$(".cover", this).stop().animate({top:'138px'},{queue:false,duration:500});
		});
	});	

});