$( function() {
$( ".sortable1" ).sortable({
cursor:'move'
});
$( ".min_sort" ).sortable({
placeholder: "ui-sortable-placeholder",
connectWith: ".min_sort",
stack: '.min_sort ul',
cursor:'move'
});
$( ".min_sort2" ).sortable({
placeholder: "ui-sortable-placeholder",
connectWith: ".min_sort2",
stack: '.min_sort2 ul',
cursor:'move'
});
} );
$(document).ready(function(){
$('.toggle').click(function(){
$(this).siblings('ul').toggle(500);
});
});