$(document).ready(function(){
	$("#sort").sortable();
});

$(document).ready(function() {
	$('.something').click(function() {
		var divId = $(this).attr('id') + '_div';
		$('#'+divId).toggle();
	});
});

