<!--
var ImageSet = 0 ;
ANIM = new Array(5)
    ANIM[0] = new Image(); ANIM[0].src = "1.gif"; 
    ANIM[1] = new Image(); ANIM[1].src = "1.gif"; 
    ANIM[2] = new Image(); ANIM[2].src = "2.gif"; 
    ANIM[3] = new Image(); ANIM[3].src = "2.gif"; 
    ANIM[4] = new Image(); ANIM[4].src = "3.gif"; 
    ANIM[5] = new Image(); ANIM[5].src = "3.gif"; 
    ANIM[6] = new Image(); ANIM[6].src = "4.gif"; 
    ANIM[7] = new Image(); ANIM[7].src = "4.gif"; 
    
function anim() {
   document.Anim.src = ANIM[ImageSet].src ;
   ImageSet++ ;
       if(ImageSet > 7) { ImageSet = 0 }
    setTimeout("anim()",500);       
}
//-->