// 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.push('■4番『おいらん』初の和テイスト!花魁登場!エロさと華やかさが際立ちます♪'); Bcolor.push('#000000'); Fcolor.push('#FF0033'); showSpeed.push('100'); dellSpeed.push('150'); sleepTime.push('4000'); Text.push('■セーラー服・女子高生・OL・ナース。男性用コスチュームのご用意ありますのでお気軽にお申し付けくださいませ♪'); Bcolor.push('#000000'); Fcolor.push('#00FF00'); showSpeed.push('50'); dellSpeed.push('100'); sleepTime.push('2000'); Text.push('■7番『女教師』を一新しました!タイトミニスカートの中を覗いてるとイタい指導が入っちゃう!'); Bcolor.push('#000000'); Fcolor.push('#CC00FF'); showSpeed.push('50'); dellSpeed.push('100'); sleepTime.push('2000'); // function CosNews(){ Id = 0; Strem = 0; Back = 0; showCosNews(); } function showCosNews(){ document.getElementById("denkou_cos").innerHTML = ' ' + Text[Id].substring( 0 , Strem ); document.getElementById("denkou_cos").style.backgroundColor = Bcolor[Id]; document.getElementById("denkou_cos").style.color = Fcolor[Id]; if ( Strem < Text[Id].length ) { Strem += 1; Show = setTimeout("showCosNews()",showSpeed[Id]); } else { Back = 0; Show = setTimeout("showCosSleep()",sleepTime[Id]); } } function showCosSleep() { setTimeout("dellCosNews()",dellSpeed[Id]); } function dellCosNews(){ document.getElementById("denkou_cos").innerHTML = ' ' + Text[Id].substring( Back , Text[Id].length ); if (Back < Text[Id].length) { Back += 1; Dell = setTimeout("dellCosNews()",dellSpeed[Id]); } else { Strem = 0; Id = ( Id < Text.length-1 ) ? Id+1 : 0 ; Dell = setTimeout("showCosNews()",showSpeed[Id]); } } document.write('
');