// ランダム画像

  headImg = new Array();

  //画像の指定。ランダムに表示したい数だけ増やす。headImg[headImg.length] = '画像URI';
  headImg[headImg.length] = './images/top_03.gif'; //パターン1

  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>');
