/*
	Used to ensure that the product boxes that are placed in the same row have the same height	
	Note: Please make sure that jquery was loaded before this script
*/

var $ = jQuery;

$(document).ready(function(){
	$.each($('.leftProduct'), function(){
		
		var sibling = $(this).siblings('div.smallText:first');
		
		if($(sibling).innerHeight() > $(this).innerHeight()){
			$(this).css('height', $(sibling).innerHeight() + 'px');
		}
	});					   
});