 var img1 = new Image();
 img1.src = "/web/upload/img/1.jpg"; //ÀÌ¹ÌÁö1 °æ·Î
 var img2 = new Image();
 img2.src = "/web/upload/img/2.jpg"; //ÀÌ¹ÌÁö2 °æ·Î
 var img3 = new Image();
 img3.src = "/web/upload/img/3.jpg"; //ÀÌ¹ÌÁö3 °æ·Î

 var maxLoops = 3; //ÀüÃ¼ ÀÌ¹ÌÁö ¼ö
 var bInterval = 3; //ÀüÈ¯½Ã Àá½Ã ¸ØÃçÀÖ´Â ½Ã°£
 var count = 2;
 function init() {
  image.filters.blendTrans.apply();
  document.images.image.src = eval("img"+count+".src");
  image.filters.blendTrans.play();

  if(count<maxLoops) count++;
  else count = 1;
  setTimeout("init()", bInterval*700+2000);
 }
