$(function(){
	// zen button hover
	$(".product ").hover(function(){
		$(this).find(".prod-info").stop().animate({bottom: "0px"}, "slow", ''),
		$(this).find(".price").stop().animate({top: "242px", right: "-20"}, "slow", 'easeInOutBack')
	}, function(){
		$(this).find(".prod-info").stop().animate({bottom: "-100px"}, "slow"),
		$(this).find(".price").stop().animate({right: "-288px", top: "-88px"}, "slow")
	});
});

$(function(){
	// zen button hover
	$(".product-col ").hover(function(){
		$(this).find(".prod-info").stop().animate({bottom: "0px"}, "slow", ''),
		$(this).find(".price").stop().animate({top: "242px", right: "-20"}, "slow", 'easeInOutBack')
	}, function(){
		$(this).find(".prod-info").stop().animate({bottom: "-100px"}, "slow"),
		$(this).find(".price").stop().animate({right: "-288px", top: "-88px"}, "slow")
	});
});

$(function(){
	// zen button hover
	$(".box-body ").hover(function(){
		$(this).find(".desc").stop().animate({bottom: "0px"}, "slow", ''),
		$(this).find(".price").stop().animate({top: "232px", right: "-20"}, "slow", 'easeInOutBack')
	}, function(){
		$(this).find(".desc").stop().animate({bottom: "-100px"}, "slow"),
		$(this).find(".price").stop().animate({right: "-288px", top: "-88px"}, "slow")
	});
});
