 function Fdinoutini(){
     timer = 80;  
     imgnum = 1;
     disptime = 1000;
     hidetime = 200;
     FadeInstr();
 }

 function FadeInstr(){
     if(imgnum == 1) opa = 100;
     else            opa = 0;
     opacnt = 0;
     gazouId = "gazou1";
     MyIMG = document.getElementById(gazouId);
     MyIMG.style.visibility = "visible";
     LINK = document.getElementById('ch_href');
     FadeIn1(gazouId,opa);
 }
 
 function FadeIn1(gazouId,opa){
     document.getElementById(gazouId).style.filter = "alpha(opacity:"+opa+")";
     document.getElementById(gazouId).style.opacity = opa/100;
     if(opa < 100){
         opacnt = opacnt + 1;
         opa += opacnt;
         if(opa > 100) opa = 100;
         setTimeout("FadeIn1('"+gazouId+"',"+opa+")", timer);
     }
     else{
         opa = 100;
         opacnt = 8;
         if(imgnum < 8) setTimeout("FadeOut1("+opa+")",disptime);
     }
 }
 
 function FadeOut1(opa){
     gazouId = "gazou1";
     document.getElementById(gazouId).style.filter = "alpha(opacity:"+opa+")";
     document.getElementById(gazouId).style.opacity = opa/100;
     if(opa <= 0) {
         opa = 0;
         document.getElementById(gazouId).style.visibility = 'hidden';
         if(imgnum == 1){
             document.gazou1.src="Message_TOP2.gif";
             LINK.href="index.html";
             disptime = 3000;
         }
         if(imgnum == 2){
             document.gazou1.src="DACS1500_TOP.jpg";
             LINK.href="d1500.html";
             disptime = 4000;
         }
         if(imgnum == 3){
             document.gazou1.src="15BX_TOP.jpg";
             LINK.href="15BX.html";
         }
         if(imgnum == 4){
             document.gazou1.src="DA2500D_TOP2.jpg";
             LINK.href="d2500D.html";
         }
         if(imgnum == 5){
             document.gazou1.src="RM55_TOP2.jpg";
             LINK.href="RM5500.html";
         }
         if(imgnum == 6){
             document.gazou1.src="DACSKUN_TOP2.gif";
             LINK.href="board.html";
             disptime = 8000;
         }
         if(imgnum == 7){
             document.gazou1.src="misago_TOP2.jpg";
             LINK.href="index.html";
         }
         imgnum = imgnum + 1;
         setTimeout("FadeInstr()", hidetime);
     }
     else{
         opa -= opacnt;
         if(opa < 0) opa = 0;
         setTimeout("FadeOut1("+opa+")",timer);
     }
 }

