﻿
     var isPause = false;
     var scrollImg = new Array();
     scrollImg[0] = "/big5/images/show/009.png";
     scrollImg[1] = "/big5/images/show/001.png";     
     scrollImg[2] = "/big5/images/show/006.png";
     scrollImg[3] = "/big5/images/show/003.png";
     scrollImg[4] = "/big5/images/show/011.png";
     scrollImg[5] = "/big5/images/show/004.png";
     scrollImg[6] = "/big5/images/show/005.png";
     scrollImg[7] = "/big5/images/show/007.png";
     scrollImg[8] = "/big5/images/show/002.png";          
     scrollImg[9] = "/big5/images/show/010.png";
     scrollImg[10] = "/big5/images/show/008.png";
     scrollImg[11] = "/big5/images/show/012.png";
                             
     window.status ="";
     
     function ScrollPicShow(index, isContinue)
     {     
       function PlayTran()
       {
          if(document.all)
          {
            simg.style.filter="RevealTrans();"
            simg.filters.revealTrans.Transition=index+5;
            simg.filters.revealTrans.apply(); 
            simg.filters.revealTrans.play();
          }
       }     	
       var simg = document.getElementById("ScrollImg");
       if(simg)
       {
         PlayTran();    
         simg.src = scrollImg[index]; 
             
         if(index >=scrollImg.length-1)
         {
           index =0;
         }
         else
         {
           index ++;
         }
         if(isContinue)
         {
           window.setTimeout("ScrollPicShow("+index+",true)",8000);
         }
       }
     }