ready
document.ready(function() {
// define which elements will move concurrently with a dragged one.
var dragGroups = {
// dragged item : affected items
'box1' : [ 'box2' ], 'box2' : [], 'box3' : [ 'box1', 'box4'], 'box4' : []
};