jQuery(document).ready(function() {
  jQuery("div.panel_button a").focus();
	jQuery("div.panel_button").click(function(){
		jQuery("div#loginpanel").animate({
			height: "200px"
		}, 100, 'linear', function(){jQuery("#username").focus();});
		jQuery("div.panel_button").toggle();
	});	
	
   jQuery("div#hide_button").click(function(){
		jQuery("div#loginpanel").animate({
			height: "0px"
		}, 100);
		
	
   });	
	
});
