jQuery(document).ready(function($) {

	//タイトル設定
	$("div#bx_service div.hd").ready(function(){
		$("<h2>製品＆サービス</h2>").appendTo("div#bx_service div.hd");
	});

	//一覧設定
	$("div#bx_service div.bd").ready(function(){
		var exe_cnt = 0;
		for(var ci1 = 0 ; ci1 < category_set.category.length ; ci1++){
			if (category_set.category[ci1].kbn == "item") {
				for(var ci2 = 0 ; ci2 < category_set.category[ci1].categorys.length ; ci2++){
					if (category_set.category[ci1].key != category_set.category[ci1].categorys[ci2].key && category_set.category[ci1].categorys[ci2].display == "0") {

						var st_itemset = "";
						st_itemset += "<div class=\"image\">" +
									"<a class=\"itimgfilter\"" +
									" style=\"BACKGROUND-IMAGE: url("+category_set.category[ci1].categorys[ci2].image+");\"" +
									" href=\""+category_set.category[ci1].categorys[ci2].pageurl+"\"" +
									" target=\""+category_set.category[ci1].categorys[ci2].target+"\"" +
									"></A></div>";
						st_itemset += "<div class=\"con\">" +
									"<span class=\"cl_"+category_set.category[ci1].key+"\">" +
									"<a href=\""+category_set.category[ci1].categorys[0].pageurl+"\" target=\""+category_set.category[ci1].categorys[0].target+"\">" +
									category_set.category[ci1].name +
									"</a>" +
									"</span>" +
									"<ul>" +
									"<li class=\"serli\">" +
									"<a class=\"title\" href=\""+category_set.category[ci1].categorys[ci2].pageurl+"\" target=\""+category_set.category[ci1].categorys[ci2].target+"\">" +
									category_set.category[ci1].categorys[ci2].title +
									"</a>" +
									"<p class=\"exp\">"+category_set.category[ci1].categorys[ci2].exp+"</p>" +
									"</li>" + 
									"</ul>"+
									"</div>";
						st_itemset += "<br style=\"clear:both;\" />";
						$("<div class=\"item\">" + st_itemset + "</div>").appendTo("div#bx_service div.bd");
						exe_cnt++;
					}
				}
			}
		}
		if (exe_cnt > 0) {
			$("<br style=\"clear:both;\" />").appendTo("div#bx_service div.bd");
		}
	});

});

