// JavaScript Document

$(document).ready(function() {
	$(".panel_button").click(function(){
		$("#panel").animate({
			height: "500px"
		})
		.animate({
			height: "400px"
		}, "fast");
		$(".panel_button").toggle(); return false;
	});	

   $("#hide_button").click(function(){
		$("#panel").animate({
			height: "0px"
		}, "fast");
   });	
});
