//ロード時実行
$(function(){

	//望雲について
	//$("#pgAbout").load("./about.html .pgBx");

});


//このページの先頭へ戻るボタン処理
function pageTop() 
{
	var sc1 = sc2 = sc3 = 0;
	if (document.documentElement) sc1 = document.documentElement.scrollTop || 0;
	if (document.body) sc2 = document.body.scrollTop || 0;
	sc3 = window.scrollY || 0;
	var sc = Math.max(sc1, Math.max(sc2, sc3));
	window.scrollTo(0, Math.floor(sc / 1.1));
	if (sc > 0) window.setTimeout("pageTop()", 10);
}


//ウインドウオープン
function openSchWin(url) 
{
	window.name = "winName";
	var winnum = "win" + Math.floor(Math.random()*100);
	sw = screen.availWidth; 
	sh = screen.availHeight;
	wl = (sw-650)/2;
	wt = (sh-400)/2;
	mainwin = window.open(url,winnum,"width=650,height=400,,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,left=" + wl + ",top=" + wt);
}
