function loadimg_guests() { var perc = Math.round((loaded_guests/count_el_guests)*100); document.getElementById("loader_perc_guests").style.width = perc + "px"; if (loaded_guests == count_el_guests) { startup_guests(); } else { window.setTimeout("loadimg_guests();", 200); } } loadimg_guests(); function startup_guests() { document.getElementById("guests_0").style.zIndex = 10; opacity("loader_guests", 100, 0, 500); window.setTimeout("switcher_guests()", 3000); } function switcher_guests() { cur_el_guests++; if (cur_el_guests >= count_el_guests) { cur_el_guests = 0; } var this_el = "guests_"+cur_el_guests; changeOpac(0, this_el); document.getElementById(this_el).style.zIndex = zorder_guests; zorder_guests++; opacity(this_el, 0, 100, 1200); window.setTimeout("switcher_guests()", 5000); }