$(document).ready(function() {
	$('.product-hover').append('<span class="corners"></span>').hover(function () {
		$("img", this).stop().animate({top:"0px"},{queue:false,duration:200});
	}, function() {
    	$("img", this).stop().animate({top:"-41px"},{queue:false,duration:200});
	});
});

$(document).ready(function() {
	$('.inner-product-hover').hover(function () {
		$("img", this).stop().animate({top:"-59px"},{queue:false,duration:300});
	}, function() {
    	$("img", this).stop().animate({top:"0px"},{queue:false,duration:300});
	});
});