function loadimg_lsc() { var perc = Math.round((loaded_lsc/count_el_lsc)*100); document.getElementById("loader_perc_lsc").style.width = perc + "px"; if (loaded_lsc == count_el_lsc) { startup_lsc(); } else { window.setTimeout("loadimg_lsc();", 200); } } loadimg_lsc(); function startup_lsc() { document.getElementById("lsc_0").style.zIndex = 10; opacity("loader_lsc", 100, 0, 500); window.setTimeout("switcher_lsc()", 6000); } function switcher_lsc() { cur_el_lsc++; if (cur_el_lsc >= count_el_lsc) { cur_el_lsc = 0; } var this_el = "lsc_"+cur_el_lsc; changeOpac(0, this_el); document.getElementById(this_el).style.zIndex = zorder_lsc; zorder_lsc++; opacity(this_el, 0, 100, 1200); window.setTimeout("switcher_lsc()", 5000); }