// JavaScript 
$(document).ready(function() {  
    $("a.pbutton").click(  
  
        function(){ $("div#panel").animate({  
        height: "450px" }, "slow"); $("a.pbutton").toggle();  
            }); 
			
			$("a#hide_button").click(function(){  
        $("div#panel").animate({  
            height: "24px" 
  
        }, "fast");   
      });         
});  