/**************************************************************** * 初期設定 ***************************************************************/ var booklover_count=0; var booklover_status_html = new Array(); var booklovertimer=setInterval("booklover_timerproc()",5000); booklover_status_html[0] = '
大仏男 '; booklover_status_html[1] = '
ロスト・ケア '; 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(' 現在の書評数:0036件'); document.write('
'); document.write(''); booklover_timerproc();