	$(document).ready(function() {
		$(".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>')
				.end()
			.find(".portlet-content");
		$(".portlet-header").click(function() {
			$(this).find(".ui-icon").toggleClass("ui-icon-minusthick").toggleClass("ui-icon-plusthick");
			$(this).parents(".portlet:first").find(".portlet-content").toggle();
		});
		$(".column").disableSelection();
		/*
		$("#boxInformazioni .portlet-header").parents(".portlet:first").find(".portlet-content").toggle();
		$("#boxInformazioni .portlet-header").toggleClass("ui-icon-minusthick").toggleClass("ui-icon-plusthick");
		*/
	});
