// JavaScript Document

jQuery(function($){
	$('.product-brick').mouseenter(function(){
		$(this).children('.product-brick-over').animate({
			
			bottom: '+=185'
		});

	}).mouseleave(function(){
		$(this).children('.product-brick-over').animate({
			
			bottom: '-=185'
		});
	});
});//end jquery
