﻿// 画像をランダムで表示
//
img = new Array();
//
//
// 画像のファイル名を記入
//
img[0] = "01.jpg";
img[1] = "02.jpg";
img[2] = "03.jpg";
img[3] = "04.jpg";
//
//
n = Math.floor(Math.random()*img.length);
//
//
//日付を取得
today = new Date();
today_month = today.getMonth()+1;
today_date = today.getDate();
//
//
document.write("<style type='text/css'>");
document.write("<!--");
document.write("body {");
//
//
//季節の設定
//
// ■春 - 3月から、4月、5月15日まで
if ((today_month == 3) || (today_month == 4) || ((today_month == 5) && (today_date <= 15))) {
  document.write("background: url(seasonphoto/spring/"+img[n]+") no-repeat center top ;");
} else 
// ■夏 - 5月16日から、6月、7月、8月まで
if (((today_month == 5) && (today_date >= 16)) || (today_month == 6) || (today_month == 7) || (today_month == 8)) {
  document.write("background: url(seasonphoto/summer/"+img[n]+") no-repeat center top ;");
} else 
// ■秋 - 9月から、10月、11月まで
if ((today_month == 9) || (today_month == 10) || (today_month == 11)) {
  document.write("background: url(seasonphoto/fall/"+img[n]+") no-repeat center top ;");
} else 
// ■冬- 12月から、1月、2月まで
if ((today_month == 12) || (today_month == 1) ||(today_month == 2)) {
  document.write("background: url(seasonphoto/winter/"+img[n]+") no-repeat center top ;");
}
//
//
document.write("}");
document.write("-->");
document.write("</style>");
