<script type="text/javascript">
var imgs = new Array();
imgs[0] = "assets/gomdon.jpg";
imgs[1] = "assets/kokujin.jpg";
imgs[2] = "assets/march.jpg";
i = 0;
function Blend(){
document.getElementById("imgframe").filters.blendTrans.apply();
document.all.item("imgframe").src = imgs[i++];
document.getElementById("imgframe").filters.blendTrans.play();
if(i>=imgs.length) i=0;
}
onload = function(){setInterval(Blend,5*1000)}
</script>
