$(function() {
	var drops = []
	$('.sort').each(function() {
		var handle = $(this).find('.handle');
		var drop = $(this).find('.drop');
		drops.push(drop);
		$(handle).click(function() {
			var shown = drop.css('display');
			$.each(drops, function(i, val) {
				val.hide();
			});
			if (shown == 'none')
				drop.show();
			return false;
		});
	});
});
