/* 画像の先行読み込み */
if(document.images) {
 var imgs = new Array();
 imgs[0] = new Image();  imgs[0].src = "http://fc0.vc/images/navi_btn_01_f2.gif";
 imgs[1] = new Image();  imgs[1].src = "http://fc0.vc/images/navi_btn_01.gif";
 imgs[2] = new Image();  imgs[2].src = "http://fc0.vc/images/navi_btn_02_f2.gif";
 imgs[3] = new Image();  imgs[3].src = "http://fc0.vc/images/navi_btn_02.gif";
 imgs[4] = new Image();  imgs[4].src = "http://fc0.vc/images/navi_btn_03_f2.gif";
 imgs[5] = new Image();  imgs[5].src = "http://fc0.vc/images/navi_btn_03.gif";
 imgs[6] = new Image();  imgs[6].src = "http://fc0.vc/images/navi_btn_04_f2.gif";
 imgs[7] = new Image();  imgs[7].src = "http://fc0.vc/images/navi_btn_04.gif";
}

function chgimg(id, imgname) {
 if(document.images) {
  if(imgs[imgname]) {
    document.images[id].src = imgs[imgname].src;
  }
  else {
    document.images[id].src = imgname;
  }
 }
}


