(function($) {
	$.fn.extend({
		columnFloat: function() {
			return this.each(function() {
				var item = $(this).children();
				var rows = $(item).size();
				
				for(i=0; i<rows/2; i+=2) {
					var a = $(item).eq(i);
					var b = $(item).eq(i+1);
					if($(a).height() > $(b).height()) $(b).height($(a).height() + 1);
					else $(a).height($(b).height());
				}
			});
		}
	});
})(jQuery);
