$(function() {
		$("ul.droptrue").sortable({
			connectWith: 'ul'
		});
 
		$("#sortable2, #sortable3").disableSelection();
	});
	
	function sortUpdate(){ 
    var dragEls = $(".final .ui-state-default"); 
    var els = ''; 
    jQuery.each(dragEls, function (){ 
        var cur_id = $(this).attr('id').split('-').shift(); 
        els += cur_id+","; 
    }); 
	
	var item = $("#customtext").val();
    
	var newurl = "index.cfm?categories=" + els + '&custom=' + item;
	window.location = newurl; 
	}