/**************************************************************** * 初期設定 ***************************************************************/ var booklover_count=0; var booklover_status_html = new Array(); var booklovertimer=setInterval("booklover_timerproc()",10000); booklover_status_html[0] = '
その年、わたしは嘘をおぼえた '; booklover_status_html[1] = '
マリー・アントワネットの日記 Rose '; booklover_status_html[2] = '
熱帯 '; booklover_status_html[3] = '
ザ・ヘイト・ユー・ギヴ あなたがくれた憎しみ '; booklover_status_html[4] = '
カササギ殺人事件〈上〉 '; /**************************************************************** * 関数 ***************************************************************/ function booklover_timerproc(){ booklover_switch_status(booklover_count); booklover_count++; if(booklover_count==booklover_status_html.length){ booklover_count=0; } } function booklover_switch_status(status_no){ var booklover_targettag = document.getElementById('booklover-status-view'); booklover_targettag.innerHTML=booklover_status_html[status_no]; } /**************************************************************** * HTML出力 ***************************************************************/ document.write('
'); document.write(' '); document.write(' honzuki revier'); document.write(' '); document.write(' '); document.write('
'); document.write(' 茜'); document.write(' '); document.write('
'); document.write('
'); document.write(' '); document.write('
'); document.write(' newest revier'); document.write('
'); document.write(' '); document.write('
'); document.write(' 現在の書評数:0062件'); document.write('
'); document.write(''); booklover_timerproc();