	$(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")
				.end()
			.find(".portlet-content");
		$(".portlet-header").click(function() {
			$(this).parents(".portlet:first").find(".portlet-content").toggle();
		});
		$(".column").disableSelection();
		//$("#boxInformazioni .portlet-header").parents(".portlet:first").find(".portlet-content").toggle();
	});

