jQuery(document).ready(function() {
	jQuery("div.panel_button").click(function(){
		jQuery("div#login_panel").animate({
			height: "150px"
		})
		.animate({
			height: "130px"
		}, "fast");
		jQuery("div.panel_button").toggle();
	
	});	
	
   jQuery("div#hide_button").click(function(){
		jQuery("div#login_panel").animate({
			height: "0px"
		}, "fast");
		
	
   });	
	
});