$(document).ready(function() {
	$("a.panel_btn").click(function(){
			$("div#paneldrop").animate({
			height: "122px"
		})
		.animate({
			height: "112px"
		}, "fast");
		$("div.panel_btn_container").toggle();

	});

   $("a#hide_button").click(function(){
		$("div#paneldrop").animate({
			height: "0px"
		}, "fast");


   });

});