/**
 * function of ecs.
 * write material list.
 */
function write_ecs_511(list_count, associate_id)
{
	var UrlArray = new Array(
	<!--$$URL_ARRAY$$-->
      "B003BYQA38",
      "B002P66JN4",
      "B002M3UEO0",
      "B002M3UEP4",
      "B0030680TY",
      "B002UHJSQ8",
      "B002P66JMU",
      "B00322P8UK",
      "B0035UZ5VG",
      "B002ZAUGWK",
<!--$$URL_ARRAY$$-->
	  ""
	);

	var ImgArray = new Array(
	<!--$$IMG_ARRAY$$-->
      "http://ecx.images-amazon.com/images/I/41FmKyjEqPL._SL75_.jpg",
      "http://ecx.images-amazon.com/images/I/51KMtKEatAL._SL75_.jpg",
      "http://ecx.images-amazon.com/images/I/61z8gL2O1ZL._SL75_.jpg",
      "http://ecx.images-amazon.com/images/I/51ZDAy7c8KL._SL75_.jpg",
      "http://ecx.images-amazon.com/images/I/419nVKBEIkL._SL75_.jpg",
      "http://ecx.images-amazon.com/images/I/51j-Uj8GrzL._SL75_.jpg",
      "http://ecx.images-amazon.com/images/I/51X-Tktc9BL._SL75_.jpg",
      "http://ecx.images-amazon.com/images/I/31cwoe5X9aL._SL75_.jpg",
      "http://ecx.images-amazon.com/images/I/51E2Q9gEb9L._SL75_.jpg",
      "http://ecx.images-amazon.com/images/I/61QK-U-LoSL._SL75_.jpg",
<!--$$IMG_ARRAY$$-->
	  ""
	);

	var TitleArray = new Array(
	<!--$$TITLE_ARRAY$$-->
      "最後の約束 [初回限定版] [DVD]",
      "アバター ブルーレイ＆DVDセット [初回生産限定] [Blu-ray]",
      "2012 ブルーレイ＆ＤＶＤセット [Blu-ray]",
      "サマーウォーズ [Blu-ray]",
      "サマーウォーズ [DVD]",
      "のだめカンタービレ 最終楽章 前編 スペシャル・エディション [DVD]",
      "アバター [初回生産限定] [DVD]",
      "ヤマトナデシコ七変化　DVD-BOX",
      "2012  スタンダード版 [DVD]",
      "侍戦隊シンケンジャーVSゴーオンジャー 銀幕BANG!!(特別限定版) [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>"
	);
}

