
	$(".column").sortable({
			connectWith: '.column',
			handle: '.ui-icon-arrow-4-diag'
		});

		$(".portlet").addClass("ui-widget ui-widget-content ui-helper-clearfix ui-corner-all")
			.find(".portlet-header")
				.addClass("ui-widget-header ui-corner-all")
				.prepend('<span class="ui-icon ui-icon-minusthick"></span>')
				.prepend('<span class="ui-icon ui-icon-arrow-4-diag"></span>')
				.end()
			.find(".portlet-content");

		$(".portlet-header .ui-icon-minusthick").click(function() {
			$(this).toggleClass("ui-icon-minusthick").toggleClass("ui-icon-plusthick");
			$(this).parents(".portlet:first").find(".portlet-content").toggle();
		});


