jQuery(document).ready(function(){
	
	if(jQuery(".products").length)
	{
		var theHeight = 0;
	
		jQuery(".product strong").each(function(){
			if(jQuery(this).height() > theHeight)
			{
				theHeight = jQuery(this).height();
			}
		});
	
		jQuery(".product strong").each(function(){
			jQuery(this).height(theHeight);
		});
	}
	
});
