// JavaScript Document


// ▼タブ切り替えボックス（右カラム） ******************************************
	  
	  $(function(){
		  
		  $("#tab_switch_schedule").click(function(){
			  $("#tab_latestposts").hide();
			  //$("#tab_latestposts").slideUp();
			  $("#tab_schedule").fadeIn();
			  $("#tab_schedule").slideDown("slow");
			  
			  $("li#tab_switch_latestposts").removeClass("btnhover");
			  $("li#tab_switch_schedule").addClass("btnhover");
			  			  
		  });
		  
		  $("#tab_switch_latestposts").click(function(){
			  $("#tab_schedule").hide();
			  //$("#tab_schedule").slideUp();
			  $("#tab_latestposts").fadeIn();
			  $("#tab_latestposts").slideDown("slow");
			  
			  $("li#tab_switch_latestposts").addClass("btnhover");
			  $("li#tab_switch_schedule").removeClass("btnhover");			  
		  });
		  
		  
	  });

