var imgs = new Array();
imgs[0] = "./images/top/img1.jpg";
imgs[1] = "./images/top/img2.jpg";
imgs[2] = "./images/top/img2.jpg";
imgs[3] = "./images/top/img3.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)}
