$(function() {

	$("#sortable").sortable({

		handle : '.handle',
		axis : 'y',
		update : function() {

			$('#sortableresult').load('index.php?sortable=1&' + $('#sortable').sortable('serialize'));

		}
	});

});
