﻿$("#column-left").sortable({
	/*connectWith: ["#column-center","#column-right"],*/
	appendTo: 'body',
    helper: 'clone',
    handle: $("div.wrapper h2:not(h2.accent-heading)"), 
	placeholder: "target", 
	zindex: 21, 
	revert: true, 
	start: startDrag,
    stop: stopDrag, 
	receive: getId,
	cursor: 'move',
	items: $("div.draggable div#column-left div.wrapper")
});
