/**********************************************************
pageScroll
--------
ページスクロール
**********************************************************/
function pageScroll() {
	$("a[href*=#]").click(function() {
		if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
			var $target = $(this.hash);
			$target = $target.length && $target || $('[name=' + this.hash.slice(1) +']');
			if ($target.length) {
				var targetOffset = $target.offset().top;
				$('html,body').animate({scrollTop: targetOffset}, 200);
				return false;
			}
		}
	});
}


/**********************************************************
実行処理
**********************************************************/
$(document).ready(pageScroll);





/**********************************************************
lytebox
--------
ライトボックス <a rel="lytebox">で使用可能
**********************************************************/
$(function() {
	$('a[rel*=lytebox]').lightpop();
});




/**********************************************************
ポップアップウィンドウを出す
**********************************************************/

function noguchiNotHara(url,wx,wy,wName){
	st = "scrollbars=yes,resizable=yes,toolbar=no,directories=no,location=no,menubar=no,status=no";
	if(wy == ''){
		wy = screen.height - (screen.height*0.15);
	}
	x = (screen.width  - wx) / 2;
	y = ((screen.height - wy) / 2) - 30;
	newwin = window.open(url,wName,"left="+x+",top="+y+",width="+wx+",height="+wy+","+st);
	newwin.focus();
}
