// Two versions - 1st one closes fast, optional windowshade effect if 2nd animate is taller height
//$(document).ready(function() {
//	$("div.panel_button").click(function(){
//		$("div#panel").animate({
//			height: "144px"
//		})
//		.animate({
//			height: "144px"
//		}, "fast");
//		$("div.panel_button").toggle();
//	
//	});	
//	
//   $("div#hide_button").click(function(){
//		$("div#panel").animate({
//			height: "0px"
//		}, "fast");
//		
//	
//   });	
//	
//});

$(document).ready(function() {
    $("div.panel_button").click(function(){
		$("div#panel").animate({ 
			height: "144px"
		}); 
		$("div.panel_button").toggle();
     }); 
	
	$("div#hide_button").click(function(){
        $("div#panel").animate({
            height: "0px"
        });
   });       
});