$(function(){
	if($('#img_box')){
		var img_width = $('#img_box img').width();
		var news_width = $('#news-box').width();
		
		$('#img_box').css('margin-left', ((news_width - img_width) * 0.5)+'px');
	}
	$('#archive_list li a').append('年');

	$('#archive_list li:last').attr('id','local-navi-bottom');
	
	var rex = RegExp(/\/(\d{4})$/);

	var href = window.location.href;
	if( href.match(rex) ){
		$('#local-navi a[href$="'+RegExp.$1+'"]').attr('id','here');
	}
});

