			var imglist = [
[ "http://image.rakuten.co.jp/idoldvd/cabinet/2/rsk-005.jpg", "未来の私への手紙吉沢真由美", "http://item.rakuten.co.jp/idoldvd/rsk-005"," 50%OFF→1900" ],
[ "http://image.rakuten.co.jp/idoldvd/cabinet/2/rsk-002.jpg", "12才の夏物語　吉沢真由美", "http://item.rakuten.co.jp/idoldvd/rsk-002"," 50%OFF→1900" ],
[ "http://image.rakuten.co.jp/idoldvd/cabinet/2/sopd-9047.jpg", "中井ゆかり<br>ＹＵＫＡＲＩ　激写【新品】", "http://item.rakuten.co.jp/idoldvd/sopd-9047"," 50%OFF→1900" ],
			];
			// ランダムに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><SPAN class=l_02>' + imglist[selectnum][3] + '円</SPAN></TD>';
			// 生成したHTMLを出力
			document.write(output);
		// -->