jQuery(document).ready(function() {
    jQuery("ol.sortable").sortable({
        distance: 15
    });
    jQuery("ol.sortable").disableSelection();        

    jQuery("form#layout-form").submit(function(e){

        // Build correct fields
        uids = []
        jQuery("ol.sortable li").each(function(){ 
            that = jQuery(this);
            uids.push(that.attr('id'));
        });
        jQuery("#teaser_order").val(uids);

    });
});


