// JavaScript Document

$(function() {
	$('.pgtop a[href*=#]').click(function() {
		//if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') &&@location.hostname == this.hostname) {
			var target = $(this.hash);
			target = target.length && target;
			if (target.length) {
				var scldurat = 800;
				var targetOffset = target.offset().top;
				$('html,body')
					.animate(
						{scrollTop: targetOffset}, 
						{duration: scldurat, 
						easing: "easeOutExpo"
						}
					);
				return false;
			}
		//}
	});
});
