/*	
*	---------------------------------------------------------------------------------------------
*	jquery.smoothscroll.js
*	---------------------------------------------------------------------------------------------
*	イージングさせる場合は、jquery.easingscroll.js必須
* イージングさせない場合は、easeInOutQuadをswingに変更
*	---------------------------------------------------------------------------------------------
*	name,id名にanchorをつける
*	例：<a name="anchor_top" id="anchor_top">
*	---------------------------------------------------------------------------------------------
*	vy:スクロールの速度
*	---------------------------------------------------------------------------------------------
*	jQuery(function(){$().smoothscroll();})
*	---------------------------------------------------------------------------------------------
*/	

(function($){
	$.fn.smoothscroll = function() {
		var vy = 800;
		
		$('a[href^=#anchor]').click(function(){
			var yPos = $($(this).attr('href')).offset().top;
			$('html,body').animate({scrollTop:yPos}, vy, "easeInOutQuad" );
			return false;
		});
	}
})(jQuery);
