jQuery.noConflict();

jQuery(document).ready(function ($) {
		equalHeight(jQuery(".column3-hell .box"));
		equalHeight(jQuery("#extra-content .column2 .box"));
		equalHeight(jQuery("#content .column2 .box"));
		jQuery(".column3-hell").wrapAll("<div class='find-child'></div>").filter(".find-child div:nth-child(3n)").addClass('last');
		jQuery(".box .inner").resize(function(){
			jQuery(".box").trigger("equalHeight");
		});
		//jQuery("#content .wrapper .column3-hell").not(".section").filter(":nth-child(3)").addClass('last');
		//jQuery('#content .wrapper > .column3-hell:nth-child(3n)').addClass('last');
		//jQuery('.column3-hell:even').addClass('last');
		jQuery("#extra-content .wrapper .column2:odd").addClass("last"); 
});

function equalHeight(group) {
	tallest = 0;
	group.each(function() {
	thisHeight = jQuery(this).height();
	if(thisHeight > tallest) {
	 tallest = thisHeight + 15;
	}
});
//group.height(tallest);
group.css({'min-height': tallest});
} 




