// JavaScript Document
$(document).ready(function() {
  $(".etichiusa").click(function() {
     apri(this);
   });
 });


function apri(th)
{
	id ="#"+th.htmlFor;
	if (th.className=="etichiusa")
	{
		$(id).show('slow')
		th.className="etiaperta"
	}
	else
	{
		$(id).hide('slow')
		th.className="etichiusa"
	}
}