$(document).ready(function() {
	$("div.panel_button_home").ready(function(){
		$("div#panel_home")
		.animate({
			height: "33px"
		}, "slow");
		$("div.panel_button_home").toggle();
	
	});	
	
	$("div.panel_button_home").click(function(){
		$("div#panel_home")
		.toggle({
			height: "-33px"
		}, "fast");
		$("div.panel_button_home").toggle();
	
	});	
	

	
});

$(document).ready(function() {
	$("div.panel_button").click(function(){
		$("div#panel")
		.animate({
			height: "33px"
		}, "slow");
		$("div.panel_button").toggle();
	
	});	
	
   $("div#hide_button").click(function(){
		$("div#panel").animate({
			height: "0px"
		}, "fast");
		
	
   });	
	
});



$(document).ready(function() {
 $("div.nav_button").click(function(){
  $("div#panel").animate({
   height: "33px"
  })
  .animate({
   height: "0px"
  }, "slow");
  $("div.nav_button").toggle();
 
 }); 
 
   $("div#hide_nav_button").click(function(){
  $("div#panel").animate({
   height: "0px"
  }, "slow");
  
 
   }); 
 
});
