
/*------------------------------------------------------
     マウスオーバーで画像が入れ替わる Javascript   -----*/
if(navigator.appVersion.charAt(0) >=3) {
  img = new Array();
/*
  img[00] = new Image();  img[00].src = "images/linzboy_1.jpg";  //配列の各要素に画像オブジェクトを指定
  img[01] = new Image();  img[01].src = "images/linzboy_2.jpg";
  img[02] = new Image();  img[02].src = "images/think.jpg";
  img[03] = new Image();  img[03].src = "images/lund_sign.jpg";
  img[04] = new Image();  img[04].src = "images/linz_sign.jpg";
  img[10] = new Image();  img[10].src = "images/home-1.gif";
  img[11] = new Image();  img[11].src = "images/home-2.gif";
  img[12] = new Image();  img[12].src = "images/think-1.gif";  
  img[13] = new Image();  img[13].src = "images/think-2.gif";
  img[14] = new Image();  img[14].src = "images/act-1.gif";  
  img[15] = new Image();  img[15].src = "images/act-2.gif";
  img[16] = new Image();  img[16].src = "images/aboutUs-1.gif";  
  img[17] = new Image();  img[17].src = "images/aboutUs-2.gif";
  img[20] = new Image();  img[20].src = "images/subject_home_back.gif";  
  img[21] = new Image();  img[21].src = "images/subject_home_back-ani.gif";
  img[22] = new Image();  img[22].src = "images/subject_home_next.gif";  
  img[23] = new Image();  img[23].src = "images/subject_home_next-ani.gif";


  img[70] = new Image();  img[70].src = "images/bbs-1.gif";  
  img[71] = new Image();  img[71].src = "images/bbs-2.gif";
  img[72] = new Image();  img[72].src = "images/link-1.gif";  
  img[73] = new Image();  img[73].src = "images/link-2.gif";
  img[74] = new Image();  img[74].src = "images/humuhumu-1.gif";  
  img[75] = new Image();  img[75].src = "images/humuhumu-2.gif";
  img[76] = new Image();  img[76].src = "images/yoggi-1.gif";  
  img[77] = new Image();  img[77].src = "images/yoggi-2.gif";

  img[1000] = new Image();  img[1000].src = "images/jukuLink_button-1.gif";  
  img[1001] = new Image();  img[1001].src = "images/jukuLink_button-2.gif";
*/
}

function _in(nam, num) {                          //マウスオーバーで呼び出される関数
  if(navigator.appVersion.charAt(0) >=3) {
  document.images[nam].src = img[num].src;
  }
}
function _out(nam,num) {                          //マウスアウトで呼び出される関数
  document.images[nam].src = img[num].src;
}


// 
