
  var today=new Date();
  var myh=today.getHours();

  var image_files_max = 7;
  var image_files = new Array(image_files_max);
  var image_koushou_width = 75;
  var image_koushou_height = 73;
  var image_width = 343;
  var image_height = 59;
  var image_alt = "徳島県立海部高等学校";
  var image_hspace = 10;
  image_files[0] = "../KOUSHOU.gif";
  image_files[1] = "../hd3_kaifukoutougakkou.gif";
  image_files[2] = "../hd1_kaifukoutougakkou.gif";
  image_files[3] = "../hd2_kaifukoutougakkou.gif";
  image_files[4] = "../bcg1.gif";
  image_files[5] = "../bcg2.gif";
  image_files[6] = "../bcg3.gif";

//校章
  document.write('<IMG src="' + image_files[0] + '" width="' + image_koushou_width + '" height="' + image_koushou_height + '">');

//背景
  if (myh>14 || myh<7) {
    document.write('<BODY background="' + image_files[6] + '">');
  }
  else { if(myh>10) {
    document.write('<BODY background="' + image_files[5] + '">');
         }
         else {
    document.write('<BODY background="' + image_files[4] + '">');
         }
  }

//学校名
  if (myh>19 || myh<4) {
    document.write('<IMG src="' + image_files[3] + '" width="' + image_width + '" height="' + image_height + '" hspace="' + image_hspace + '" alt="' + image_alt + '">');
  }
  else { if(myh>11) {
    document.write('<IMG src="' + image_files[2] + '" width="' + image_width + '" height="' + image_height + '" hspace="' + image_hspace + '" alt="' + image_alt + '">');
         }
         else {
    document.write('<IMG src="' + image_files[1] + '" width="' + image_width + '" height="' + image_height + '" hspace="' + image_hspace + '" alt="' + image_alt + '">');
         }
  } 