$(document).ready(function() {
	$("div.panel_button").click(function(){
		$("div#panel").animate({
			height: "480px"
		})
		.animate({
			height: "430px"
		}, "fast");
		$("div.panel_button").toggle();
	
	});	
	
   $("div#hide_button").click(function(){
		$("div#panel").animate({
			height: "0px"
		}, "fast");
		
	
   });	
   
   $(".panel_button").css('top:0px;')
	
}); 

