/*-- TOPでランダムにバナーを表示する --*/

ImageCount = 6;         //　画像の最大枚数
img = Math.floor(Math.random() * ImageCount);
path="./img/msg/"

  // TOPバナー
  bnr=new Array()  
  bnr[0]="top-copy06.gif"
  bnr[1]="top-copy02.gif"
  bnr[2]="top-copy03.gif"
  bnr[3]="top-copy04.gif"
  bnr[4]="top-copy05.gif"
  bnr[5]="top-copy01.gif"


  // TOPバナーURL
  Cm=new Array() 
  Cm[0]=""
  Cm[1]=""
  Cm[2]=""
  Cm[3]=""
  Cm[4]=""
  Cm[5]=""
  
  //TOPバナーのALT
  Alt=new Array()
  Alt[0]="戦争だきゃぁ勘弁しちくりょ。"
  Alt[1]="それはゴーヤだからさ。"
  Alt[2]="ノークレーム、ノータリーンでお願いします。"
  Alt[3]="今日のあなたは「３へぇ」です。"
  Alt[4]="ガメラ付き携帯とか。マグロ撮影とか。"
  Alt[5]="鋼鉄ジーグとはおまえのことだ！　えっ！"
  
  


  // TOPバナーを記述
function write_img(){

//    document.write('<A HREF="');
//    document.write(Cm[img]);
//    document.write('" target="_blank"');
//    document.write(">");
    document.write('<IMG SRC='+path+bnr[img]+' width="66" height="783" border="0"');
    document.write('alt="'+Alt[img]+'">');
//    document.write("</A>");
}

