(function($) {
	$.fn.equalHeight = function() {
		var group = this;
		$(window).bind('resize', function() {
			var tallest = 0;
			$(group).height('auto').each(function() {
				tallest = Math.max(tallest, $(this).height());
			}).height(tallest);
		}).trigger('resize');
	};
})(jQuery);

$(window).load(function() {
	$("div.item-holder1").equalHeight();
	$("div.small-post .inner").equalHeight();
});

