var banNum=5; function Flip() { if(banNum == RotImgL.length-1){banNum = 0;}else {banNum++;} var tmp = 0; /*Change the images*/ tmp = document.getElementById('RotImgL'); tmp.src = RotImgL[banNum]; tmp = document.getElementById('RotImgT'); tmp.src = RotImgT[banNum]; tmp = document.getElementById('RotImgM'); tmp.src = RotImgM[banNum]; tmp = document.getElementById('RotImgB'); tmp.src = RotImgB[banNum]; /*Change the href and target*/ tmp = document.getElementById('RotLnkT'); tmp.href = RotLnkT[banNum]; tmp.target = RotTgtT[banNum]; tmp = document.getElementById('RotLnkM'); tmp.href = RotLnkM[banNum]; tmp.target = RotTgtM[banNum]; tmp = document.getElementById('RotLnkB'); tmp.href = RotLnkB[banNum]; tmp.target = RotTgtB[banNum]; /*Call me again in 10 sec*/ setTimeout('Flip()', 10000); };