$(document).ready(function(){
	$("#listElementsUL").sortable({"axis": "y", "stop": onStop});
})

function onStop() {
	var commonData = $(this).attr("name");
	var items = $(".listElementLI");
	var params = "";
	
	$.each(items, function(i){
		params += "items[]=" + i + "@@_@@" + $(this).attr("name");
		if(items[i+1]) params += "&";
	});
	
	$.ajax({
		type: "POST",
		url: "move.php",
		data: "commonData=" + commonData + "&" + params
	});
}
