function loadimg_news() { var perc = Math.round((loaded_news/count_el_news)*100); document.getElementById("loader_perc_news").style.width = perc + "px"; if (loaded_news == count_el_news) { startup_news(); } else { window.setTimeout("loadimg_news();", 200); } } loadimg_news(); function startup_news() { document.getElementById("news_0").style.zIndex = 10; opacity("loader_news", 100, 0, 500); window.setTimeout("switcher_news()", 3000); } function switcher_news() { cur_el_news++; if (cur_el_news >= count_el_news) { cur_el_news = 0; } var this_el = "news_"+cur_el_news; changeOpac(0, this_el); document.getElementById(this_el).style.zIndex = zorder_news; zorder_news++; opacity(this_el, 0, 100, 1200); window.setTimeout("switcher_news()", 5000); }