$(function () {
    if (! $.browser.safari) {
        $('#link_to_top').click(function () {
            $(this).blur();
            $('html,body').animate({ scrollTop: 0 }, 'first');
            return false;
        });
    }
});



//pagetopを１ページに複数設置する場合と、ページ内リンクを設置する場合。　FAQページ用に追加
$(function(){
	$('a[href^=#]').click(function() {
		var href= this.hash;
		var $target = $(href == '#_top' ? 'body' : href);
		if($target.size()) {
			var top = $target.offset().top;
			$($.browser.safari ? 'body' : 'html')
				.animate({scrollTop:top}, 800, 'swing');
		}
		return false;
	});
});