Sortable helper clone does not work

Sortable helper clone does not work


Hello:
I tried to add a clone helper (wich clones the item during a drag,
like a firefox functionallty: http://jqueryui.com/demos/draggable/#visual-feedback
(the second one in the first row)), but it does not work. I tried this
on the default sample given on the download library but with no help.
this is my code:
    $(function() {
        $("#sortable").sortable({
            helper: 'clone'
        });
        $("#sortable").disableSelection();
    });
any suggestion how to make it work?