function mostra(num){
   piu = '#plus' + num;
   testo = '#text' + num;
   $(piu).hide();
   $(testo).show();
}
function nascondi(num){
   piu = '#plus' + num;
   testo = '#text' + num;
   $(piu).show();
   $(testo).hide();
}
