$(document).ready(function() {
	$("div#show_button").click(function(){
		$("div#panel").animate({
			height: "300px"
		})
		
		.animate({
			height: "296px"
		}, "fast");
		$("div.panel_button").toggle();
	
	});	
	
   $("div#hide_button").click(function(){
		$("div#panel").animate({
			height: "0px"
		}, "fast", function() {
			
			$("div.panel_button").toggle();
		
		});
	
   });	
	
});
