/*
$j(document).ready(function(){
	$j('.products-grid').each(function(){
		$j(this).children('.item').height($j(this).parent().height());
		$j(this).children('.item').children('.more-btn').css({'position':'absolute', 'bottom':'0'});
	});
	
	$j('.regular-price').each(function(){
		$j(this).parents('.price-box').css('position','absolute');
		$j(this).parents('.price-box').css('bottom','36px');
	});
});
*/
