$.noConflict();


jQuery(document).ready(function() {
		jQuery("#postit").show()
		jQuery("#postit-chiuso").hide()

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

	});
