var tabcorrente = "social";
function cambiaTabs(nuovaTab) {
	$("#" + tabcorrente).hide();
	$("#" + nuovaTab).show("slow");
	tabcorrente = nuovaTab;
}