// Text = new Array(); Bcolor = new Array(); Fcolor = new Array(); showSpeed = new Array(); dellSpeed = new Array(); sleepTime = new Array(); Text[0] = '朝9時から出勤、もしくはラストまで出勤の女性は交通費を支給します!!';Bcolor[0] = '#00FFCC';Fcolor[0] = '#FF00CC';showSpeed[0] = '100';dellSpeed[0] = '50';sleepTime[0] = '2000';Text[1] = '大阪の他店に無い集客力で高収入間違い無し。ホテヘル型の痴女ヘルスです。';Bcolor[1] = '#FFA5C5';Fcolor[1] = '#FFFFFF';showSpeed[1] = '100';dellSpeed[1] = '50';sleepTime[1] = '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();