// 期間限定商品
//------------------------------------
function store_write( under_flg ){
	// 表示データ設定（"タイトル（ALT）","リンク文","リード文","画像パス","URL","ターゲット"）

	var data = new Array(
	new Array("プリキュアドリンクタンブラー/ポップコーンバケット","プリキュアドリンクタンブラー/ポップコーンバケット","プリキュアが限定タンブラーとポップコーンバケットで登場！","/index_rsc/store/pho_precure-allstars.jpg","/store/precure-allstars.html",""),			
	new Array("ドラえもんポップコーンBOX","ドラえもんポップコーンBOX","ドラえもん缶バッジ付！<br />（全30種類）","/index_rsc/store/pho_dora_2010_ningyo.jpg","/store/dora_2010_ningyo",""),	
	new Array("白桃ピューレソーダ","白桃ピューレソーダ","大人気のフレーバーシリーズに新味登場！","/index_rsc/store/pho_hakutoupure.jpg","/store/hakutoupure.html",""),			new Array("ふわっとショコラ","ふわっとショコラ","かつてない口どけ、究極の食感。","/index_rsc/store/pho_chocolat2.jpg","/store/chocolat_berry.html",""),	
	new Array("プレッツェル＆キャラメルポップコーン","プレッツェル＆キャラメルポップコーン","上品な塩味とスイートなキャラメルのおいしい出会い","/index_rsc/store/pho_pretzel.jpg","/store/pretzel.html","")
	)

	// HTML設定
	var store = '';
	store += '<div class="store';
	if( under_flg ) store += ' under';
	store += '">\n';
	store += '<h2>期間限定商品</h2>\n';
	store += '<ul>\n';
	for( var i = 0; i < data.length; i++ ){
		store += '<li class="clearfix';
		if( i + 1 == data.length ) store += ' end';
		store += '">\n';
		store += '<div class="photo"><a href="' + data[i][4] + '"';
		if( data[i][5] ) store += ' target="' + data[i][5] + '"';
		store += '><img src="' + data[i][3] + '" width="100" height="67" alt="' + data[i][0] + '" title="' + data[i][0] + '" /></a></div>\n';
		store += '<dl class="lead">\n';
		store += '<dt><a href="' + data[i][4] + '"';
		if( data[i][5] ) store += ' target="' + data[i][5] + '"';
		store += '>' + data[i][1] + '</a></dt>\n';
		store += '<dd>' + data[i][2] + '</dd>\n';
		store += '</dl>\n';
		store += '</li>\n';
	}
	store += '</ul>\n';
	store += '<p class="more"><a href="/store/">More</a></p>\n';
	store += '</div>\n';

	// 書出し
	document.write( store );
}