[jQuery] Working with selectables and draggables

[jQuery] Working with selectables and draggables


Hey all! Happy Holidays, I am trying to combine both selectable
effects and draggables.
I have this:
<script type="text/javascript">
$(document).ready(function() {
    $(".word").draggable({grid: [50,50]});
});
$(window).bind("load",function(){
    $("#wrapper").selectable();
});
</script>
I am going to have multiple classes to select that are span elements
with the class .word as you see above and I want to be able to select
them and also drag them all.
Any ideas?
Thanks in advance,
Ryan