$(function(){
	//ページスクローラー
	$("a[href*='#']").easingScroll({
  easing: "easeOutExpo",
  duration: "800"
	});
	
	$("#staff a").click(function(){
		$.modal('<iframe src="'+$(this).attr("href")+'" style="width:888px;height:528px;">', {
			containerCss:{
				width:"888px",
				height:"528px"
			},
			overlayClose:true
		});
	return false;
	});
})
