﻿//月
var time = (new Date()).getMonth()

//ファイル名
var fileName = "";

//1月
if(time == "0"){
	fileName = "d";
}

//2月
else if (time == "1") {
	fileName = "d";
}

//3月
else if (time == "2") {
	fileName = "a";
}

//4月
else if (time == "3") {
	fileName = "a";
}

//5月
else if (time == "4") {
	fileName = "b";
}

//6月
else if (time == "5") {
	fileName = "b";
}

//7月
else if (time == "6") {
	fileName = "b";
}

//8月
else if (time == "7") {
	fileName = "b";
}

//9月
else if (time == "8") {
	fileName = "c";
}

//10月
else if (time == "9") {
	fileName = "c";
}

//11月
else if (time == "10") {
	fileName = "c";
}

//12月
else if (time == "11") {
	fileName = "d";
}

document.write("<tr>")
document.write("<td width=107 height=100><img name=scene01 src=images/top/scene01_" + fileName + ".jpg width=107 height=100 border=0></td>")
document.write("<td width=296 height=100 colspan=2><img name=scene02 src=images/top/scene02_" + fileName + ".jpg width=296 height=100 border=0></td>")
document.write("<td width=107 height=100><img name=scene03 src=images/top/scene03_" + fileName + ".jpg width=107 height=100 border=0></td>")
document.write("<td width=1 height=100><img src=images/common/spacer.gif width=1 height=100 border=0></td>")
document.write("</tr>")
document.write("<tr>")
document.write("<td width=107 height=115><img name=scene04 src=images/top/scene04_" + fileName + ".jpg width=107 height=115 border=0></td>")
document.write("<td width=296 height=115 colspan=2><img name=main src=images/top/main.gif width=296 height=115 border=0></td>")
document.write("<td width=107 height=115><img name=scene05 src=images/top/scene05_" + fileName + ".jpg width=107 height=115 border=0></td>")
document.write("<td width=1 height=115><img src=images/common/spacer.gif width=1 height=115 border=0></td>")
document.write("</tr>")
document.write("<tr>")
document.write("<td width=107 height=100><img name=scene06 src=images/top/scene06_" + fileName + ".jpg width=107 height=100 border=0></td>")
document.write("<td width=296 height=100 colspan=2><img name=scene07 src=images/top/scene07_" + fileName + ".jpg width=296 height=100 border=0></td>")
document.write("<td width=107 height=100><img name=scene08 src=images/top/scene08_" + fileName + ".jpg width=107 height=100 border=0></td>")
document.write("<td width=1 height=100><img src=images/common/spacer.gif width=1 height=100 border=0></td>")
document.write("</tr>")
