$.noConflict();


jQuery(document).ready(function() {
		jQuery("#chiusura").show()
		jQuery("#chiusura-chiuso").hide()
	
		
		jQuery("#1 a").click(function(e){
			jQuery("#chiusura").show("slow");
			jQuery("#chiusura-chiuso").hide("slow");
			
			
			jQuery("#1").addClass("attivo");
			jQuery("#2").removeClass("attivo");
			
			e.preventDefault();	
		});
		
	
		jQuery("#1 a").click(function(e){
			jQuery("#chiusura").show("slow");
			jQuery("#chiusura-chiuso").hide("slow");
			
			
			jQuery("#1").addClass("attivo");
			jQuery("#2").removeClass("attivo");
			
			e.preventDefault();	
		});
		
	
		jQuery("#2 a").click(function(e){
			jQuery("#chiusura").hide("slow");
			jQuery("#chiusura-chiuso").show("slow");
			jQuery(".chiudi").hide("slow");
			
			
			jQuery("#2").addClass("attivo");
			jQuery("#1").removeClass("attivo");
			
			e.preventDefault();	
		});
		
	
		jQuery("#1").addClass("attivo");


	});
