var outerLayout;

/*
*#######################
*		 ON PAGE LOAD
*#######################
*/
$(document).ready( function() {

	// create the OUTER LAYOUT
	outerLayout = $("body").layout();

	// init the Sortables
	$(".column").sortable({
		connectWith:	$(".column")
	,	placeholder:	'widget-placeholder'
	,	cursor:			'move'
	//	use a helper-clone that is append to 'body' so is not 'contained' by a pane
	,	helper:			function (e,ui) { return $(ui).clone().appendTo('body').show(); }
	});

});