$(document).ready(function(){
	matchColumns();
	expandable();
	rev_suckerfish('drop',50);
});

function matchColumns()
{
	var cols = $('.column');
	var theHeight = 0;
	cols.each(function(){
		if ($(this).height() > theHeight)
		{
			theHeight = $(this).height();	
		}
	});
	cols.css({'height':theHeight + "px"});
}

function expandable()
{
}