function classToggle(sub,azione) {
if(azione==null)azione=false;
parent=document.getElementById('t'+(parseInt(sub)-1));
element=document.getElementById('t'+sub);
if (element != null){
		if (element.style.display=="none"&&!azione) {
			element.style.display = "block";
			if(sub>3)
				parent.style.background= "#999999 url(http://www.nicolacarlon.it/images/minus.jpg) bottom left no-repeat";
				
			else
				parent.style.background= "url(http://www.nicolacarlon.it/images/minus.jpg) bottom left no-repeat";
			parent.style.borderBottom="1px dashed #666";
		}
		else if (element.style.display=="block") {
			element.style.display = "none";
			if(sub>3)
				parent.style.background = "#999999 url(http://www.nicolacarlon.it/images/plus.jpg) bottom left no-repeat";
			else
				parent.style.background = "url(http://www.nicolacarlon.it/images/plus.jpg) bottom left no-repeat";
			
			if(sub!=1)parent.style.borderBottom="1px solid #666";
            classToggle((parseInt(sub)+1),true);
		}
}
	}