			var imglist = [
[ "http://image.rakuten.co.jp/idoldvd/cabinet/1/noah-31.jpg", "芦田実沙寿　１２才　Ｎｏａｈ-３１<br>【新品】", "http://item.rakuten.co.jp/idoldvd/noah-31" ],
[ "http://image.rakuten.co.jp/idoldvd/cabinet/crve-0008.jpg", "熊田曜子 Favorite<br><br>【新品】", "http://item.rakuten.co.jp/idoldvd/crve-0008" ],
[ "http://image.rakuten.co.jp/idoldvd/cabinet/idol0371.jpg", "仲村悠里<br>【新品】", "http://item.rakuten.co.jp/idoldvd/idol-037" ]
			];
			// ランダムに1つ選んで表示する関数
			// どれか１つ選ぶ
			var selectnum = Math.floor(Math.random() * imglist.length);
			// 画像とリンクを生成
			var output = 
				'<TABLE width=730 border=0 cellPadding=0 cellSpacing=0><TR><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);
		// -->