jQuery(document).ready(function() {
	jQuery("div.rightpanel_button").click(function(){
		jQuery("div#rightpanel")
		.animate({right: "-10px"},  400)
		.animate({right: "0px" }, 450);

		jQuery("div.rightpanel_button").toggle();
	});
	
   jQuery("div#hide_button_right").click(function(){
											  
		jQuery("div#rightpanel").animate({right: "113px"},  400);
	 });	
	
});


jQuery(document).ready(function() {
	jQuery("div.leftpanel_button").click(function(){
		jQuery("div#leftpanel")
		.animate({left: "-30px"},  400)
			.animate({left: "-25px"}, 450);
	
		jQuery("div.leftpanel_button").toggle();
	});
	
   jQuery("div#hide_button_left").click(function(){
											  
		jQuery("div#leftpanel").animate({left: "113px"},  400);
	});	
	
});

jQuery(document).ready(function() {
	jQuery("div.weatherpanel_button").click(function(){
		jQuery("div#weatherpanel")
		.animate({right: "-10px"},  400)
		.animate({right: "0px" }, 450);

		jQuery("div.weatherpanel_button").toggle();
	});
	
   jQuery("div#hide_button_weather").click(function(){
											  
		jQuery("div#weatherpanel").animate({right: "113px"},  400);
	 });	
	
});




