// var Text = new Array(); var Bcolor = new Array(); var Fcolor = new Array(); var showSpeed = new Array(); var dellSpeed = new Array(); var sleepTime = new Array(); Text[0] = '≪要チェック≫業界唯一の完全スキン着用店です!!病気・HIVの心配は一切ありません!!'; Bcolor[0] = '#FFFFFF'; Fcolor[0] = '#FF0000'; showSpeed[0] = '50'; dellSpeed[0] = '10'; sleepTime[0] = '3000'; Text[1] = '【速報】人気女性誌 an an で、貴女はS?M?特集(^0^)今、一番注目の稼げる業種です!'; Bcolor[1] = '#FFCCFF'; Fcolor[1] = '#FF0066'; showSpeed[1] = '50'; dellSpeed[1] = '10'; sleepTime[1] = '3000'; Text[2] = '【朗報!】大手グループ・系列店への在籍経験のある方、採用率大幅UP!!(^0^)'; Bcolor[2] = '#0000FF'; Fcolor[2] = '#FFFF00'; showSpeed[2] = '50'; dellSpeed[2] = '10'; sleepTime[2] = '3000'; Text[3] = '≪新制度導入≫高額月額制システム(毎月ボーナス有り)始めました☆詳しくはTELまたはメールにて・・・'; Bcolor[3] = '#FFFF00'; Fcolor[3] = '#FF0000'; showSpeed[3] = '100'; dellSpeed[3] = '50'; sleepTime[3] = '2000'; // function News(){ Id = 0; Strem = 0; showNews(); } function showNews(){ document.getElementById("denkou").innerHTML = Text[Id].substring( 0 , Strem ); document.getElementById("denkou").style.backgroundColor = Bcolor[Id]; document.getElementById("denkou").style.color = Fcolor[Id]; if ( Strem < Text[Id].length ) { Strem += 1; Show = setTimeout("showNews()",showSpeed[Id]); } else { Show = setTimeout("showSleep()",sleepTime[Id]); } } function showSleep() { setTimeout("dellNews()",dellSpeed[Id]); } function dellNews(){ document.getElementById("denkou").innerHTML = Text[Id].substring( 0 , Strem ); if (Strem > 0) { Strem -= 1; Dell = setTimeout("dellNews()",dellSpeed[Id]); } else { Strem = 0; Id = ( Id < Text.length-1 ) ? Id+1 : 0 ; Dell = setTimeout("showNews()",showSpeed[Id]); } } document.write('
'); //window.onload = News();