$().ready(function() {
	$('#your_wishlist tr.submit').hide();
	$('#your_wishlist table.draggable').tableDnD({
		onDragClass: "dragging",
		dragHandle: "sortorder",
		onDrop: function() {
			$('#your_wishlist table.draggable').each(function(intIndex){
				var CurrentSortOrder = 1;
				$(this).children('tbody').children('tr').children('td.sortorder').each(function() {
					$(this).html(CurrentSortOrder);
					CurrentSortOrder++;
				});
				var CurrentSortOrder = 1;
				$(this).children('tbody').children('tr').children('td').children('input.sortorderID').each(function() {
					$(this).attr('value', CurrentSortOrder);
					CurrentSortOrder++;
				});
				/* Post form */
				var data = $('#your_wishlist form').serialize();
				$.ajax({
					type: "POST",
					url: "?fuseaction=update_sortorder",
					data: data,
					success: function() {
						//alert('success!');
					}
				});
			});
		}
	});
});
