//マウスが重なったら、画像を切り替える
function swImg(iName, str)
{
	document.images[iName].src = str;
}



// オンマウスで透明度変更
function trans(img, alpha)
{
	document.images[img].filters['alpha'].opacity = alpha;
}



//月によってリンク先変更（スケジュールリンクジャンプ用）
function SeasonLink()
{
	mySeason=(new Date()).getMonth()+1;
	      if(mySeason == 1){
			location.href="./2007/01.html";
	}else if(mySeason == 2){
			location.href="./2007/02.html";
	}else if(mySeason == 3){
			location.href="./2007/03.html";
	}else if(mySeason == 4){
			location.href="./2007/04.html";
	}else if(mySeason == 5){
			location.href="./2007/05.html";
	}else if(mySeason == 6){
			location.href="./2006/06.html";
	}else if(mySeason == 7){
			location.href="./2006/07.html";
	}else if(mySeason == 8){
			location.href="./2006/08.html";
	}else if(mySeason == 9){
			location.href="./2006/09.html";
	}else if(mySeason == 10){
			location.href="./2006/10.html";
	}else if(mySeason == 11){
			location.href="./2006/11.html";
	}else if(mySeason == 12){
			location.href="./2006/12.html";
	}
}

