/* ----------------------------
   functions.js
---------------------------- */

/* ----------------------------
	 スムーススクロール
---------------------------- */
function subWin(href,name,w,h){
	var width = w ? w : 600;
	var height = h ? h : 500;
	window.open(href,name,'width=' + width + ',height=' + height + ',scrollbars=yes');
}

/* ----------------------------
	 スムーススクロール
---------------------------- */
function smoothScroll(){
 $('#pagetop a').click(function() {
		if(navigator.userAgent.indexOf('Safari') != -1){
			var _target = $('body');
		} else {
			var _target = $('html');
		}
		var _speed = 400;
		
		_target.animate({
			scrollTop: 0
		},_speed,'easeOutExpo');
		return false;
 });
};

$(function(){
	smoothScroll();
});

jQuery.extend( jQuery.easing,
{
	easeOutExpo: function (x, t, b, c, d) {
		return (t==d) ? b+c : c * (-Math.pow(2, -10 * t/d) + 1) + b;
	}
});
