//トピックパスをページ下部に複製

$(function(){
	$("#topicPathArea .topicPath").clone().attr("id","footerTopicPath").appendTo("#contentEndArea .inner");
});

$(function(){
	$('a.external').not($('a:has(img)')).append('<img src="/common/img/icon_blank_01.png" alt="" width="10" height="8" class="blankIcon01" />');
	$('a.external').click(function(){
		window.open(this.href, '_blank');
		return false;
	});
});