﻿$(document).ready(function(){

	
	
	
	//profileのポップアップ
	
		$('.profile a').click(function(){
		window.open(this.href,"WindowName","width=602,height=362,resizable=no,scrollbars=no");
		return false;
	});
	
	//スムーススクロール
	
	$(function() {
	$('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 sclpos = 0;
				var scldurat = 600;
				var targetOffset = target.offset().top - sclpos;
				$('html,body')
					.animate({scrollTop: targetOffset}, {duration: scldurat, easing: "easeOutExpo"});
				return false;
			}
		}
	});
	});
	
});


