<!--
	$(document).ready(function() {
		/*
		$(".mcs_trig").bind("mouseenter",function(){
			$("#mcs").slideDown("slow");
		}).bind("mouseleave",function(){
			$("#mcs").slideUp("slow");
		});
		*/

		$(".sottomenu-expand").click(function(){
			$("#mcs").slideToggle("slow");
			$(this).toggleClass("sottomenu-collapse");
		});

		$("a.fancylink").fancybox();

		$(".tree_mc_a").toggle(
			function(){
				$(this).next(".tree_c").show("normal");
				$(this).attr("title","riduci (-)");
				$(this).css("background-image","url('/img/-.gif')");
			},
			function(){
				$(this).next(".tree_c").hide("normal");
				$(this).attr("title","espandi (+)");
				$(this).css("background-image","url('/img/+.gif')");
			});

		$(".tree_c_a").toggle(
			function(){
				$(this).next(".tree_a").show("normal");
				$(this).attr("title","riduci (-)");
				$(this).css("background-image","url('/img/-.gif')");
			},
			function(){
				$(this).next(".tree_a").hide("normal");
				$(this).attr("title","espandi (+)");
				$(this).css("background-image","url('/img/+.gif')");
			});

	});
//-->
