<!--

/////////////////////////////////////////////////////////////////////////////
/*　ローカルナビゲーション役物ON/OFF制御スクリプト
*/
/////////////////////////////////////////////////////////////////////////////

var imgname3 = "button_on.gif" ;      //ローカルナビボタン名称（約物）
var imgname4 = "button_off.gif" ;     //ローカルナビボタン名称（約物）
var n4 = "/img/" ;
var n3 ;

button_l_on_img = new Array() ;
button_l_off_img = new Array() ;

button_l_on_img[0] = new Image();
button_l_on_img[0].src =  n4 + imgname3 ;
button_l_off_img[0] = new Image();
button_l_off_img[0].src =  n4 + imgname4 ;

function imageOn_l(n3){

      if(document.images) {
          document.images['img' + n3].src = button_l_on_img[0].src ;
      }

}

function imageOff_l(n3){ 

      if(document.images) {
          document.images['img' + n3].src = button_l_off_img[0].src ;
      }

}

//-->

