$(document).ready(function() {
	$(".statuslist").sortable({
		connectWith: '.statuslist',
		receive: function (event, ui) {
			$.post('/process-order.php', {
				target: $(this).attr('id'),
				caption: $(this).sortable('serialize')
			} );
		}
	}).disableSelection();
	$(".nav li a").each( function () {
		var tekst = $(this).html();
		var i = tekst.length;
		while ( $(this).width() > 130 && i > 0) {
			i--;
			$(this).html(
				tekst.substring(0,i) + '...'
			);
		}
	} );
});
