/**
 * function of ecs.
 * write material list.
 */
function write_ecs_2267(list_count, associate_id)
{
	var UrlArray = new Array(
	<!--$$URL_ARRAY$$-->
      "B000SLY0FC",
      "B000JVSXBS",
      "B00005HUQ6",
      "B000Y16C6G",
      "B000UFKY6U",
      "B002YQXTU6",
      "B002UVJRNI",
      "B00006AM09",
      "B000V3PSQC",
      "B0028BVFBC",
<!--$$URL_ARRAY$$-->
	  ""
	);

	var ImgArray = new Array(
	<!--$$IMG_ARRAY$$-->
      "http://ecx.images-amazon.com/images/I/51a0Jbys20L._SL75_.jpg",
      "http://ecx.images-amazon.com/images/I/51yQd8MP2PL._SL75_.jpg",
      "http://ecx.images-amazon.com/images/I/614YQ37A7RL._SL75_.jpg",
      "http://ecx.images-amazon.com/images/I/517crwATx1L._SL75_.jpg",
      "http://ecx.images-amazon.com/images/I/51ktrjvc9nL._SL75_.jpg",
      "http://ecx.images-amazon.com/images/I/415NfbXb96L._SL75_.jpg",
      "http://ecx.images-amazon.com/images/I/317KE5Hi4wL._SL75_.jpg",
      "http://ecx.images-amazon.com/images/I/41TS8JXGSYL._SL75_.jpg",
      "http://ecx.images-amazon.com/images/I/61mJUDAyUgL._SL75_.jpg",
      "http://ecx.images-amazon.com/images/I/51pX55SGkFL._SL75_.jpg",
<!--$$IMG_ARRAY$$-->
	  ""
	);

	var TitleArray = new Array(
	<!--$$TITLE_ARRAY$$-->
      "自律神経にやさしい音楽",
      "メンタル・デトックス",
      "アジアン・ヒーリング",
      "家カフェ",
      "アロマ",
      "嵐コレクション",
      "ラブ・バラード7~α波オルゴール・ベスト",
      "究極の眠れるCD",
      "屋久島(DVD付)",
      "夜カフェ~リラックス・タイム",
<!--$$TITLE_ARRAY$$-->
	  ""
	);

	if (list_count > UrlArray.length-1) {
		list_count = UrlArray.length-1;
	}

	document.write(
		"<div class=\"bp-ecs\">"
	);

	for (n = 0; n < list_count; n++) {
		var url = "http://www.amazon.co.jp/exec/obidos/ASIN/" + UrlArray[n] + "/" + associate_id + "/ref=nosim/";

		document.write(
			"<div class=\"bp-ecs-item\">"+
			"<a href=\"" + url + "\" target=\"_blank\">" +
			"<img src=\"" + ImgArray[n] + "\">"+
			"</a>"+
			"<div class=\"bp-ecs-product-detail\">"+
			"<a href=\"" + url + "\" target=\"_blank\">" + TitleArray[n] + "</a>"+
			"</div>"+
			"</div>"+
			"<br clear=\"both\">"
		);
	}

	document.write(
		"<div class=\"bp-ecs-banner\"><a href=\"http://www.blogpeople.net/affilist/\" target=\"_blank\"><img src=\"http://www.blogpeople.net/ecs/images/banner.gif\" alt=\"BlogPeople ecs\" style=\"border:none;\"></a></div>"+
		"<div class=\"bp-ecs-poweredby\"><a href=\"http://member.blogpeople.net/click/?pid=380\" target=\"_blank\">Powered by BlogPeople</a></div>"+
		"</div>"
	);
}

