$(document).ready(function(){
	if($('body').attr('class') == 'blog-news'){
		var _target = 'month_' + $('body.blog-news #localNavi ul ul').attr('class').replace('thismonth_','');
		$("#localNavi ul ul li").each(function(){
			if($(this).attr('class') == _target){
				var _text = $(this).text();
				$('a',this).remove();
				$(this).text(_text).addClass('pLocation');
			};
		});
	};

	if($('body').attr('class') == 'blog-report'){
		$("body.blog-report #localNavi ul ul ul").each(function(){
			var target_array = $(">li", this).get();
			$(target_array[target_array.length-1]).addClass('last');
		});
	};
});