var timeout = 5000; var imageList = new Array( "/Media/primetime/bdmjpg2.jpg" ); function refreshPicture() { id = Math.floor(Math.random() * imageList.length); this.document.images["prime"].src = imageList[id]; } timerId = this.window.setInterval("refreshPicture()",timeout);