/**********************************************************
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}, 500);
				return false;
			}
		}
	});
}


/**********************************************************
ブログ一覧プルダウン
**********************************************************/
function pullDown(){
  $("ul#sub").hide();
  $("ul#pullmenu>li").hover(function(){
	 $("ul:not(:animated)", this).slideDown("fast");},
	 function(){$("ul#sub",this).slideUp("fast");});
}




/**********************************************************
実行処理
**********************************************************/
$(document).ready(pageScroll);
$(document).ready(pullDown);




/**********************************************************
lytebox
--------
ライトボックス <a rel="lytebox">で使用可能
**********************************************************/
$(function() {
	$('a[rel*=lytebox]').lightpop();
});




/**********************************************************
ポップアップ
**********************************************************/
function requestFormWin() { 
	wx = 700;
	wy = 700;
	x = (screen.width  - wx) / 2;
	y = (screen.height - wy) / 2;
	st = "scrollbars=yes,resizable=yes,toolbar=no,directories=no,location=no,menubar=no,status=no";
	newwin = window.open("https://www.c-form.net/form/VRqhV","formWin","left="+x+",top="+y+",width="+wx+",height="+wy+","+st);
	newwin.focus();
}

function ocFormWin() { 
	wx = 700;
	wy = 700;
	x = (screen.width  - wx) / 2;
	y = (screen.height - wy) / 2;
	st = "scrollbars=yes,resizable=yes,toolbar=no,directories=no,location=no,menubar=no,status=no";
	newwin = window.open("https://www.c-form.net/form/q9Jng","formWin","left="+x+",top="+y+",width="+wx+",height="+wy+","+st);
	newwin.focus();
}

function contactFormWin() { 
	wx = 700;
	wy = 700;
	x = (screen.width  - wx) / 2;
	y = (screen.height - wy) / 2;
	st = "scrollbars=yes,resizable=yes,toolbar=no,directories=no,location=no,menubar=no,status=no";
	newwin = window.open("https://www.c-form.net/form/pQiZ0","formWin","left="+x+",top="+y+",width="+wx+",height="+wy+","+st);
	newwin.focus();
}



