// Text = new Array(); Bcolor = new Array(); Fcolor = new Array(); showSpeed = new Array(); dellSpeed = new Array(); sleepTime = new Array(); Text[0] = '朝・昼のタイムサービスでも電話予約可能です!気になる女性はお早めに押さえて下さい☆';Bcolor[0] = '#000000';Fcolor[0] = '#FF33CC';showSpeed[0] = '100';dellSpeed[0] = '50';sleepTime[0] = '2000';Text[1] = '只今!お得3Pイベント開催!OPEN8:30からご利用可能になってます♪';Bcolor[1] = '#000000';Fcolor[1] = '#FFFFFF';showSpeed[1] = '100';dellSpeed[1] = '50';sleepTime[1] = '2000';Text[2] = '19時以降から新人女性を選ぶと【新人特別割引】でご案内です☆';Bcolor[2] = '#000000';Fcolor[2] = '#6666FF';showSpeed[2] = '100';dellSpeed[2] = '50';sleepTime[2] = '2000';Text[3] = 'エロいフェロモンがでています『ルカ』支持頂き【新薦】にランクアップしました☆';Bcolor[3] = '#000000';Fcolor[3] = '#FF9933';showSpeed[3] = '100';dellSpeed[3] = '50';sleepTime[3] = '2000';Text[4] = '特優【夕華】グラビア・動画更新しました!まさにコラボレーションです!';Bcolor[4] = '#000000';Fcolor[4] = '#FFFF33';showSpeed[4] = '100';dellSpeed[4] = '50';sleepTime[4] = '2000';Text[5] = '男を挑発するエロBODY特優【あや】グラビア更新しました、大人の色気をご堪能下さい。';Bcolor[5] = '#000000';Fcolor[5] = '#FFFF33';showSpeed[5] = '100';dellSpeed[5] = '50';sleepTime[5] = '2000';// function News(){ Id = 0; Strem = 0; showNews(); } function showNews(){ document.getElementById("news").innerHTML = ' 更新情報 ' + Text[Id].substring( 0 , Strem ); document.getElementById("news").style.backgroundColor = Bcolor[Id]; document.getElementById("news").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("news").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();