﻿// Easingの追加(ここでしか使用しないのでプラグインは用いない)
jQuery.easing.quart = function (x, t, b, c, d) {  
	return -c * ((t=t/d-1)*t*t*t - 1) + b;  
};  

/*------------------------------------- 
	ページ読み込み中 
-------------------------------------*/  
$(function() {
	// <a href="#***">の場合、スクロール処理を追加  
	$('a[href*=#]').click(function() {  
		if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {  
			var href   = $(this.hash);  
			var target = $(href == '#_top' ? 'body' : href);
			
			if(target.size()) {
				var top = target.offset().top;
        $('html,body').animate({ scrollTop: top }, 1200, 'quart');
      } 
      return false; 
		}  
 });  
});