$(document).ready(function(){
	$(".testoCategoriaServizi .txt").hide();
	$(".testoCategoriaServizi").hide();
	$(".titoloCategoriaServizi").click(function(){
		$("#" + this.id.replace("titolo","testo")).slideToggle();		
	});
	$(".testoCategoriaServizi .titolo").click(function(){
		if($("#" + this.id).next().children().text().length > 0)
			$("#" + this.id).next().slideToggle();		
	});
	$.each($(".categoriaServizi .testoCategoriaServizi .titolo"), function (i, el){
		if($(".testo",$("#" + el.id).next()).text().length <= 0){
			$("#"+el.id).css("cursor","auto");
		}
	})
});