appendTo problem in 1.6rc2

appendTo problem in 1.6rc2


I wrote a simple script with 1.5.2 which used a sortable and a
droppable. If you dropped a sortable element onto the droppable it
appended it to another element. I used this functionality to make a
sortable list with a 'trash' option.
The same code doesn't work with 1.6rc2. The appendTo command is simply
having no effect.
Here is my code.....
        <script>
            $(document).ready(function(){
                $("#trash").droppable({
                    accept: ".sortable",
                    drop: function(e, ui) {
                        ui.draggable.appendTo("#trashed");
                    }
                })
             $("#sortable_list").sortable({});            
            });
        </script>
Any suggestions??