// 画像を一定間隔で入れ替える
// img0.jpg,img1.jpgなどの数字が続いたファイルを複数用意します。
imgNum = 13; // 入れ替える画像の枚数(最初の画像も含める)
nme = "top/topic_" // 画像のディレクトリとファイル名の数字と拡張子より前の部分
exp = "jpg" // 拡張子

function swapImage() {
  imgCnt = Math.floor(Math.random() * imgNum) + 1;
  topicimage.style.filter='revealTrans(udration=2,transition=7)';
  topicimage.filters.revealTrans.Apply();
  topicimage.src = nme + imgCnt + "." + exp;
  topicimage.filters.revealTrans.Play();
}
