//------------------------------------------------------------
//javascript by ＠うさ http://www.scriptsquare.com/usajava/
//------------------------------------------------------------
var nYPos;
var nTimer;
function SampleStartMove()
{
	//NNの場合
	if (navigator.appName=="Netscape")
	{
		//画面の位置を取得
		nYPos = window.pageYOffset;
		//NN4
		if(document.layers)
		{
			//レイヤーの幅と高さをマウス座標にセット
			document.layerSample.left = 2;
			document.layerSample.top = nYPos + 5;
		}
		//NN6
		else
		{
			document.getElementById("layerSample").style.left = 2;
			document.getElementById("layerSample").style.top = nYPos + 5;
		}
	}
	//IEの場合
	if (document.all)
	{
		//画面の位置を取得
		nYPos = document.body.scrollTop;
		//レイヤーの幅と高さを座標にセット
		layerSample.style.left = 2;
		layerSample.style.top = nYPos + 5;
	}
	nTimer=setTimeout("SampleStartMove()",100);
}


document.write("<style type='text/css'><!--");
document.write("body,th,td { color:#333333; font-size:10pt; margin-left:190px}");
document.write("A:link {  color:#33cc99 }");
document.write("A:visited { color:#33cc99 }");
document.write("A:active {  color: #33cc99 }");
document.write("A:hover   { color: #cc6699; background-color:#ccccff }");
document.write("A.t:link, A.t:visited, A.t:active, A.t:hover { color:#ffffff; font-size:1pt }");
document.write(".s { border-bottom:1px solid #999999}");
document.write("--></style>");

function Display(id){
if(document.all){
if(document.all(id).style.display == "block"){
document.all(id).style.display = "none";
}else if(document.all(id).style.display == "none"){
document.all(id).style.display = "block";
}
}else if(document.getElementById){
if(document.getElementById(id).style.display == "block"){
document.getElementById(id).style.display = "none";
}else if(document.getElementById(id).style.display == "none"){
document.getElementById(id).style.display = "block";
}
}
}


document.write("</head><body background='index/bg.gif' onload='SampleStartMove()'>");
document.write("<DIV id='layerSample' style='position : absolute;left : 6px;top : 0px;width : 180px;visibility : visible;  z-index : 1;'>");
document.write("<img src='index/img/wel.jpg'><p>");
document.write("<table style='border:1px solid'><tr><td>");
document.write("<a href='index.html'>トップページ</a>(10/06/05)<br>");
document.write("<a href='profile.html'>《EST》プロフィール</a><br>");
document.write("<a href='mp3/index.html'>Introduction in English</a><br><br>");
document.write("<a href='http://www.d4.dion.ne.jp/~masao-m/'>音楽監督</a>[本人HP]<br>");
document.write("<a href='http://www.h2.dion.ne.jp/~agano/'>E&Vトレーナー</a>[本人HP]<br>");
document.write("<a href='pianist.html'>ピアニスト</a><br>");
<!--document.write("<a href='scholars05.html'>5代目スコラーズ</a>(06/03/01)<br>");-->
<!--document.write("<a href='scholars06.html'>6代目スコラーズ</a>(07/03/16)<br>");-->
<!--document.write("<a href='scholars07.html'>7代目スコラーズ</a>(08/04/14)<br>");-->
<!--document.write("<a href='scholars08.html'>8代目スコラーズ</a>(09/03/18)<br>");-->
document.write("<a href='scholars09.html'>9代目スコラーズ</a>(10/04/25)<br><br>");
document.write("<a href='vision.html'>ヴィジョン</a>(10/05/04)<br><br>");
document.write("<a href='yotei.html'>出演情報</a>(10/06/29)<br>");
document.write("<a href='katsudo.html'>活動記録</a>(10/05/04)<br>");
document.write("<a href='concert.html'>コンサートの歩み</a>(09/11/01)<br>");
document.write("<a href='lepaday1.html'>レパートリー</a>(10/05/04)<br><br>");
document.write("<a href='now.html'>練習中の曲</a>(10/03/16)<br>");
document.write("<a href='boshu.html'>団員募集</a>(10/06/05)<br><br>");
document.write("<a href='link.html'>リンク</a>(09/06/04)<br>");
document.write("<a href='http://6313.teacup.com/veest/bbs'>掲示板</a>");
document.write("<br><br><a href='mp3/mp3.html'>《EST》の演奏</a>");
document.write("</td></tr></table></DIV>");

