<!--
photo = new Array();

//画像の指定。ランダムに表示したい数だけ増やす。photo[連番] = '画像URL';
photo[0] = 'n_comimg/topimage01.jpg';
photo[1] = 'n_comimg/topimage02.jpg';
photo[2] = 'n_comimg/topimage03.jpg';
photo[3] = 'n_comimg/topimage04.jpg';
photo[4] = 'n_comimg/topimage05.jpg';
photo[5] = 'n_comimg/topimage06.jpg';


r = Math.floor(Math.random()*photo.length);
document.write('<style type="text/css">');
document.write('#topWrapper {background: url("'+photo[r]+'") no-repeat;}');
document.write('</style>');
//-->
