var v = new Array(9); v[0]="http://ora-600"; v[1]="http://DGM-16933"; v[2]="http://ora-00600"; v[3]="http://AMD-00119"; v[4]="http://ORA-600"; v[5]="http://AUD-00612"; v[6]="http://ORA-00600"; v[7]="http://OCI-21522"; v[8]="http://any-code"; var n = 0; function run() { show(); } function show (value) { div = document.getElementById("details"); div.innerHTML = v[n%9] if ( n%9==8 ) { n = 8; setTimeout(show, 2000); } else { setTimeout(show, 700); } ++n; }