function applDrop(widget){
$(widget).draggable({
appendTo: 'body',
scroll: true,
scrollSensitivity: 100,
cancel: null,
stop:function(event, ui){
cloneWdg(this);//This function clone the widget.
$(this).draggable({scroll: true, scrollSensitivity:100});
}
});
}