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