jQuery.fn.equalizeCols = function(){
	var height = 0;
	return this.css("height","auto").each(function(){
		height = Math.max( height, jQuery(this).outerHeight() );
	}).css("height", height);

};
