jQuery(document).ready(function(){
	if( jQuery('.thumbnailSpillLarge')[0] ){
		var max = 0;
		jQuery('.thumbnailSpillLarge').each(function() {
			max = Math.max( max, jQuery(this).height() );
		});
		jQuery('.thumbnailSpillLarge').height(max);
	}
})

