<!--
num = 3; // 枚数
nme = "img/head" // ディレクトリ
exp = "jpg"
cnt = 0;
url=["http://www.infoview.co.jp/v-ch/out/","http://www.try180.com/","http://itunes.apple.com/jp/app/manga-english/id416479418?mt=8"];
function changeImage() {
cnt++;
cnt %= num;
img.filters.revealTrans.Apply();
img.src = nme + cnt + "." + exp;
img.filters.revealTrans.Play();
document.getElementById("link").setAttribute("href",url[cnt]);
};
window.onload=function(){
document.getElementById("link").setAttribute("href",url[0]);
setInterval(changeImage,5000);
};
//-->
