// Version 1.0.1; customportal

$(document).ready(
	function () {
		$('div.sp_column').Sortable(
			{
				accept: 'sp_block_container',
				helperclass: 'sortHelper',
				activeclass : 	'sortableactive',
				hoverclass : 	'sortablehover',
				handle: '.sp_header',
				tolerance: 'pointer',
				onChange : function(ser)
				{
					update_block_layout();
				},
				onStart : function()
				{
					$.iAutoscroller.start(this, document.getElementsByTagName('body'));
				},
				onStop : function()
				{
					$.iAutoscroller.stop();
				}
			}
		);
	}
);
