var bodydone = 0; img1 = new Image(); img1.src = 'template/images/splash.jpg'; img2 = new Image(); img2.src = 'template/images/movinglayer.gif'; function dobody(){ bodydone = true; } function replace_img(){ if (img1.complete && img2.complete && bodydone){ document.getElementById('outer').style.backgroundImage = 'url('+img1.src+')'; document.getElementById('website_container').style.backgroundImage = 'url('+img2.src+')'; setTimeout("movealong()",5000); clearInterval(intvl); } } intvl = setInterval("replace_img()", 500); function movealong(){ top.location.href = 'http://www.altera-aqua.nl/index.php?skipsplash=true'; }