
delay = 2000;
imageNum = 1;

// Preload animation images
theImages = new Array();
for(i = 1; i < 9; i++) {
   theImages[i] = new Image();
}
theImages[1].src = "ChonTam1.jpg";
theImages[2].src = "ChonTam3.jpg";
theImages[3].src = "TueManToathien.JPG";
theImages[4].src = "TueManHauChuong.JPG";
theImages[5].src = "TMThuyetPhap.jpg";
theImages[6].src = "SamHoi.jpg";
theImages[7].src = "IMG_0566.JPG";
theImages[8].src = "IMG_0571.JPG";
function animate() {
   if ( theImages[imageNum].complete )
   {    
      document.animation.src = theImages[imageNum].src;
      imageNum++;
      if(imageNum > 8) {
         imageNum = 1;
      }
   }
}
