// ランダム画像

  headImg = new Array();

  //画像の指定。ランダムに表示したい数だけ増やす。headImg[headImg.length] = '画像URI';
  headImg[headImg.length] = './images/header.jpg'; //パターン0
  headImg[headImg.length] = './images/header1.jpg'; //パターン1
  headImg[headImg.length] = './images/header2.jpg'; //パターン2
  headImg[headImg.length] = './images/header3.jpg'; //パターン3
  headImg[headImg.length] = './images/header4.jpg'; //パターン4
  headImg[headImg.length] = './images/header5.jpg'; //パターン5
  headImg[headImg.length] = './images/header6.jpg'; //パターン6
  headImg[headImg.length] = './images/header7.jpg'; //パターン7
  headImg[headImg.length] = './images/header8.jpg'; //パターン8
  headImg[headImg.length] = './images/header9.jpg'; //パターン9

  r = Math.floor(Math.random()*headImg.length);
  document.write('<style type="text/css">');
  document.write('#header h1 a{background: url("'+headImg[r]+'") no-repeat;}');
  document.write('</style>');