			var imglist = [
[ "http://image.rakuten.co.jp/idoldvd/cabinet/shohin8/ppwk-002.jpg", "松本伶奈<br>天使の交換日記<br>13才の日記<br>【新品】", "http://item.rakuten.co.jp/idoldvd/ppwk-002"," 50%OFF→1900" ],
[ "http://image.rakuten.co.jp/idoldvd/cabinet/shohin8/ppwk-003.jpg", "るか＆伶奈 13才<br>天使の交換日記<br>南国修学旅行<br>【新品】", "http://item.rakuten.co.jp/idoldvd/ppwk-003"," 50%OFF→1900" ],
[ "http://image.rakuten.co.jp/idoldvd/cabinet/shohin8/ppwk-001.jpg", "松永るか<br>天使の交換日記<br>13才の日記<br>【新品】", "http://item.rakuten.co.jp/idoldvd/ppwk-001"," 50%OFF→1900" ],
[ "http://image.rakuten.co.jp/idoldvd/cabinet/2/dand-005.jpg", "上奈紗空・葉山裕美/現役高校生+集団検診<br>【新品】", "http://item.rakuten.co.jp/idoldvd/dand-005"," 50%OFF→1900" ],
[ "http://image.rakuten.co.jp/idoldvd/cabinet/2/dand-006.jpg", "辻かのん・田咲ひまり/現役高校生集団検診<br>【新品】", "http://item.rakuten.co.jp/idoldvd/dand-006"," 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);
		// -->