
//商品の定義（2商品）※数字[0]に１商品目、[1]に２商品目の情報を記入------------------------

var title = new Array(2);
	title[0] = '内田文武';
	title[1] = '川久保ジョイ';
	
var img = new Array(2);
	img[0] = 'http://www.tagboat.com/artgene/img/item20589p3.jpg';
	img[1] = 'http://www.tagboat.com/artgene/img/item19623p3.jpg';
	
var url = new Array(2);
	url[0] = 'http://ec.tagboat.com/jp/products/detail.php?product_id=20589';
	url[1] = 'http://ec.tagboat.com/jp/products/detail.php?product_id=19623';
	
var comment = new Array(2);
	comment[0] = 'ギフトにも、オススメの『Arcadia』シリーズ。';
	comment[1] = 'タグボートが推す若手人気写真作家川久保ジョイによる「明晰夢#12」';




//以下の設定は変更しないでください---------------------------------------------------------

nMax = 2; // 最大値
nMin = 1; // 最小値
var num = Math.floor(Math.random()*(nMax-nMin+1))+nMin; //乱数発生
num = num - 1; //ランダムID定義

document.write('<div id="agTagboat">');
document.write('<h2><img src="http://www.artgene.net/ag/images/sideber/tagboat/ttl_tagboat.gif" width="141" height="66" alt="＠GALLERY TAGBOAT"></h2>');
document.write('<p class="agImg"><a href="' + url[num] + '" target="_blank"><img src="' + img[num] + '"></a></p>');
document.write('<h3>' + title[num] + '</h3>');
document.write('<p class="agTxt">');
document.write(comment[num]);
document.write('</p>');
document.write('<p class="ac mt10 mb00"><a href="' + url[num] + '" target="_blank"><img src="http://www.artgene.net/ag/images/share/btn_shoping.gif" width="92" height="19" alt="ショッピング" class="hov"></a></p>');
document.write('</div>');
