function loadimg_wp() { var perc = Math.round((loaded_wp/count_el_wp)*100); document.getElementById("loader_perc_wp").style.width = perc + "px"; if (loaded_wp == count_el_wp) { startup_wp(); } else { window.setTimeout("loadimg_wp();", 200); } } loadimg_wp(); function startup_wp() { document.getElementById("wp_0").style.zIndex = 10; opacity("loader_wp", 100, 0, 300); window.setTimeout("switcher_wp()", 3000); } function switcher_wp() { cur_el_wp++; if (cur_el_wp >= count_el_wp) { cur_el_wp = 0; } var this_el = "wp_"+cur_el_wp; changeOpac(0, this_el); document.getElementById(this_el).style.zIndex = zorder_wp; zorder_wp++; opacity(this_el, 0, 100, 700); window.setTimeout("switcher_wp()", 3000); }