			var imglist = [
[ "http://image.rakuten.co.jp/idoldvd/cabinet/shohin4/yywk-006.jpg", "日高栞 15歳 制服白書06<BR>あなたの日記に栞を挟んで<br>【新品】", "http://item.rakuten.co.jp/idoldvd/yywk-006" ],
[ "http://image.rakuten.co.jp/idoldvd/cabinet/shohin7/petd-010_5.jpg", "長澤まさみ  petit水着に着替えたら<br>【新品】", "http://item.rakuten.co.jp/idoldvd/petd-010" ],
[ "http://image.rakuten.co.jp/idoldvd/cabinet/2/rgn-001.jpg", "ほしのあき <br>女らしくある為のヨガ・エクササイズ【新品】", "http://item.rakuten.co.jp/idoldvd/rgn-001" ]
			];
			// ランダムに1つ選んで表示する関数
			// どれか１つ選ぶ
			var selectnum = Math.floor(Math.random() * imglist.length);
			// 画像とリンクを生成
			var output = 
				'<TD vAlign=top align=middle width=120><a class=m_01 href="' + imglist[selectnum][2] + '">' +
				'<img border=0 src="' + imglist[selectnum][0] + '"' +
				' alt="' + imglist[selectnum][1] + '"' +
				' width="' + '100px' + '" height="' + '140px' +
				'"><br>' +
				imglist[selectnum][1] + '</a><br></TD>';
			// 生成したHTMLを出力
			document.write(output);
		// -->