



//initialise the docking boxes manager
var manager = new dbxManager(
        'rules',                                        // session ID [/-_a-zA-Z0-9/]
        'no',                                        // enable box-ID based dynamic groups ['yes'|'no']
        'yes',                                        // hide source box while dragging ['yes'|'no']
        'button'                                // toggle button element type ['link'|'button']
        );


//create new docking boxes group
var purple = new dbxGroup(
        'purple',                                 // container ID [/-_a-zA-Z0-9/]
        'vertical',                         // orientation ['vertical'|'horizontal'|'freeform'|'freeform-insert'|'confirm'|'confirm-insert']
        '4',                                         // drag threshold ['n' pixels]
        'yes',                                        // restrict drag movement to container/axis ['yes'|'no']
        '10',                                         // animate re-ordering [frames per transition, or '0' for no effect]
        'yes',                                         // include open/close toggle buttons ['yes'|'no']
        'open',                                 // default state ['open'|'closed']

        'öffnen',                                                                                 // word for "open", as in "open this box"
        'schließen',                                                                                 // word for "close", as in "close this box"
        'Ziehen Sie diese Box mit der Maus, um Sie zu bewegen.',                 // sentence for "move this box" by mouse
        'Klicken Sie hier, um diese Box zu %toggle%.',                                         // pattern-match sentence for "(open|close) this box" by mouse

        'Benutzen Sie die Pfeiltasten, um diese Box zu bewegen. ',                 // sentence for "move this box" by keyboard
        'press the enter key to %toggle% this box. ',        // pattern-match sentence-fragment for "(open|close) this box" by keyboard

        '%mytitle%  [%dbxtitle%]',                                                 // pattern-match syntax for title-attribute conflicts

        'hit the enter key to select this target',                // confirm dialog sentence for "selection okay"
        'sorry, this target cannot be selected'                        // confirm dialog sentence for "selection not okay"
        );
