		(function($)
		{
			$.fn.chiudi = function()
			{
				return this.each(function()
				{
						$(this).hide();
				});
			};
		})(jQuery);


		$(document).ready(function() {
		
			$(".titolo_servizi_toggle").click(function () {
				if ( $(this).parent("tr").next("tr").is(":visible") == true ) {
					$(this).children('.freccia_giu').toggle();
					$(this).children('.freccia_dx').toggle();
					$(this).parent("tr").next("tr").toggle();				
				} else {
					$('.freccia_dx').show();
					$('.freccia_giu').hide();
					$(".riga_sezione_servizi").chiudi();
					$(this).children('.freccia_giu').toggle();
					$(this).children('.freccia_dx').toggle();
					$(this).parent("tr").next("tr").toggle();
				}
			});  

		});

