Event.observe(window,'load', function (e) {
	Sortable.create('LeftSideBar', {handle: 'handle', constraint: '', dragOnEmpty: true, containment: ['LeftSideBar', 'RightSideBar'], tag: 'div',only: 'SideItem',hoverclass: 'Sortable'});
	Sortable.create('RightSideBar', {handle: 'handle', constraint: '', dragOnEmpty: true, containment: ['LeftSideBar', 'RightSideBar'], tag: 'div',only: 'SideItem',hoverclass: 'Sortable'});
	Sortable.create('Content',{tag: 'div',only:'BlogPost',handle: 'handle'});
	Sortable.create('Comments',{tag: 'li',only:'UserComment',handle: 'handle'});
});
