﻿//attiva funzionalità di slide per la sidebar
$(document).ready(function(){
	$(".accordion2 h3:first").addClass("active");
	$(".accordion2 ul:not(:first)").hide();
	$(".accordion2 p:not(:first)").hide();
	$("#sidebarLeft .accordion2 ul:not(:first)").show();
	$("#sidebarLeft .accordion2 p:not(:first)").show();

	$(".accordion2 h3").click(function(){
		$(this).next("ul").slideToggle("slow")
		.siblings("ul:visible").slideUp("slow");
		$(this).next("p").slideToggle("slow")
		.siblings("p:visible").slideUp("slow");
		$(this).toggleClass("active");
		$(this).siblings("h3").removeClass("active");
	});
});


//-->
if (typeof (Sys) !== 'undefined') Sys.Application.notifyScriptLoaded();

