	//ネイル投稿数切り替え
	function showUser_Month(){
		$('user_month').show();
		$('user_week').hide();
		$('tab_usr_month').className = "month_on";
		$('tab_usr_week').className = "week_off";
	}
	
	function showUser_Week(){
		$('user_month').hide();
		$('user_week').show();
		$('tab_usr_month').className = "month_off";
		$('tab_usr_week').className = "week_on";
	}

	//日記投稿数切り替え
	function showDiary_Month(){
		$('diary_month').show();
		$('diary_week').hide();
		$('tab_diary_month').className = "month_on";
		$('tab_diary_week').className = "week_off";
	}
	
	function showDiary_Week(){
		$('diary_month').hide();
		$('diary_week').show();
		$('tab_diary_month').className = "month_off";
		$('tab_diary_week').className = "week_on";
	}

