

jQuery(document).ready(function() {
	jQuery("a.ouvrir").click(function(){
		jQuery("div#panel").animate({
			height: "300px"
		})
		.animate({
			height: "200"
		}, "slow");
	
	});	
	
	jQuery("div.fermer").click(function(){
		jQuery("div#panel").animate({
			height: "300px"
		})
		.animate({
			height: "0px"
		}, "normal");
	
   });	
	
});