﻿num = 22; // 画像の枚数
cnt = 0;
function changeImage() {
  cnt++;
  cnt %= num;
  img.filters.revealTrans.Apply();
  img.src = "js/topimg/IMG_" + cnt + ".jpg";
  img.filters.revealTrans.Play();
}
