[jQuery] Sortables Organize

[jQuery] Sortables Organize


If i have 3 columns that hold 3 divs (<div class="feed"></div>) each
and i make those columns sortable by:
$('.column').sortable();
Now if someone moved one of the divs to another column, then that
column would recieve 4 divs.. is there anyway to make it so the
sortables would be evened out? so if one column has 4 divs and another
one has 2 the very bottom div would move down to fill in that spot at
the bottom?
Example: http://www.myiowa-news.com/test/jquery/sort.html
Would the easiest way to do this be by including in the stop callback
to count each row and if one row has 2 more than another row then move
the bottom one over? Thank you!
James