$(document).ready(function(){

	//スムーズスクロール
	$('.backtotop').click(function () {
		$(this).blur();
		$('html,body').animate({ scrollTop: 0 }, 'slow');
		return false;
	});

	//フォントサイズ変更
	$("ul.change-font-size-list li a").textresizer({
		target: "#contents",
		sizes: ["100%", "140%" ]
	});

	// ロールオーバー
	$('ul.change-font-size-list a img,ul.header-navi01 a img,ul.navi a img,ul.header-navi02 a img,div.info a img,a.backtotop img,ul.contents-footer-navi a img').rollover();

	//外部リンクにアイコン表示
	$("a[href^=http]")
	.not("[href*="+location.hostname+"]")
	.not($("a[href^=http]").find('img').parents('a'))
	.attr("target","_blank")
	.addClass("blank");

});
