jQuery(document).ready(function() {
	jQuery("div.panel_btn").click(function(){
		jQuery("#panel").animate({
			height: "400px"
		})
		.animate({
			height: "330px"
		}, "fast");
		jQuery("div.panel_btn").toggle();
	
	});	
	
   jQuery(".hide_btn").click(function(){
		jQuery("#panel").animate({
			height: "0px"
		}, "fast");
		
	
   });	
	
});
