// JavaScript Document

//文字サイズの変更
jQuery(document).ready( function() {
	jQuery( ".font-size a" ).textresizer({
		target: "#Contents",
		type: "fontSize",
		sizes: [ "12px", "14px", "18px" ],
		selectedIndex: 1
	});
});

//ページトップへのスクロール
$(function () {
    if (! $.browser.safari) {
        $('.gototop').click(function () {
            $(this).blur();
            $('html,body').animate({ scrollTop: 0 }, 'fast');
            return false;
        });
    }
});

