image_url = new Array(); var countImages = image_url.length; var rotator_id = 'page_body' var rotator_speed = 4500 var timer=0; function preload() { if (document.getElementById(rotator_id) ){ index = Math.floor(Math.random() * image_url.length); document.getElementById(rotator_id).style.backgroundImage = 'url("http://www.skolaufilipa.sk/mediafiles/slides/'+image_url[index]+'")'; } //clearTimeout(timer); //timer = self.setTimeout('preload()', rotator_speed); } function LoadImages() { // esoft_populate(); preload(); } dw_Event.add( window, 'load', LoadImages);