// Ordina tabelle
$(document).ready(function() { 
	$("table").tablesorter({ 
		sortList: [[0,0],[2,0]] 
	}); 
}); 

// Nascondi elementi
function hid(cat){ $("."+cat).toggle(); }

// Pop up per social Network
function social(str) {
        searchWin = window.open(str,'Social','scrollbars=no,resizable=yes,width=600,height=500,status=no,location=no,toolbar=no');
}

