$(document).ready(function() {
	$("div.buton").click(function(){
		$("div#content").animate({
			height: "200"
		})
		$("div#content").animate({
			height: "180px"
		}, "fast");
		$("div.buton").toggle();
		
	});	
	    
   $("div#btn_ascunde").click(function(){
		$("div#content").animate({
			height: "0px"
		}, "fast");
		
	
   });	
	
});


