$(function(){
		
	
// ------------------------------------------------------- //
// Nasconde i dettagli dei progetti	(consente la stampa)
// ------------------------------------------------------- //
	
	$('div#TreeView ul').hide();
	$('div.ItemDetails').hide();
	$('#Footer').fadeIn(0.1);
	

// -- Mostra contenuto TreeView -- //
	
	$('div#TreeView h3').click(function() {
		$(this).next().toggle(0);
		$(this).toggleClass('Opened')
	});
	
	$('li.OpenNext span').click(function() {
		$(this).next().toggle(0);
		$(this).parent().toggleClass('Opened')
	});
		

// -- Mostra contenuto TreeView -- //
	
	$('#TreeView h3').hover(function(){
		$(this).addClass("Hover");}
		,function(){
		$(this).removeClass("Hover");
	});

	$('#TreeView span').hover(function(){
		$(this).addClass("Hover");}
		,function(){
		$(this).removeClass("Hover");
	});

	
// ------------------------------------------------------- //
// Show/Hide Elementi Scheda Procedura
// ------------------------------------------------------- //
	
	$('.Item h4').hover(function(){
		$(this).addClass('Hover');
	},function(){
		$(this).removeClass('Hover');
	});
	
	$('.Item h4').click(function() {
		$(this).toggleClass('Opened');
		$(this).siblings('div.ItemDetails').toggle();
		$('.Item').fadeIn(0.1);
	});
	
});
