$.fn.generic_text_toggle = function() {
	if(this.attr('stato')=="1") {
		this.children(".anteprima").show();
		this.children(".intero").hide();
		this.attr('stato',0);
	}
	else {
		this.children(".anteprima").hide();
		this.children(".intero").show();
		this.attr('stato',1);
	}
}

$(document).ready(function() {
	$(".text-box.area-centrale.chiuso:first .bottone_apri_sezione").apri_pannello();
});
