function show_intro(pre,pree,n,select_n,css) { for (i = 1; i <= n; i++) { var intro = document.getElementById(pre + i); var cha = document.getElementById(pree + i); intro.style.display = "none"; cha.className=css + "1"; if (i == select_n) { intro.style.display = "block"; cha.className=css + "2"; } } } var tn = 1; var tims_running = 0; function change_headline(n){ show_intro('focus_text','focus_but',5,n,'focus_butc'); tn = n; } function mouse_on(n){ tims_running = 0; change_headline(n); } function mouse_out(){ tims_running = 1; } function run() { if(tims_running == 1){ change_headline(tn); tn++; } if(tn>=5) { tn = 1; } } function startrun() { tims_running = 1; tims = window.setInterval("run()",3000); } document.writeln("
"); document.writeln("
"); document.writeln("