// JavaScript Document

/* ▼▼ NL Content
/////////////////////////////////////////////// */

function nlHtmlInsert(id){
	var putId = '#' + id;
	
	jQuery.getJSON("http://www.lvrs.jp/api/girlSearch/ranking/?format=json&shuffle=1&callback=?",
	function(data) {
		jQuery.each(data, function(i,val) {
			$(putId).append(
											'<div class="item clearFix">' + 
											'<p class="content"><a href="' + val.url + '" target="_blank">' + val.name + '(' + val.age + ')</a>／' + val.ambience + '／' + val.shopName + '：' + val.genre + '</p>' + 
											'<p class="thumb"><a href="' + val.shopUrl + '" target="_blank"><img src="' + val.thumb1 + '" width="45" /></a></p>' + 
											'<!-- /.item --></div>'
											);
		});
	});
	
	
	/*
	var putId = '#' + id;
	var txtPath = './common/elements/js/input.txt';
	//$(putId).append(get(txtPath));
	$.get(txtPath, function(data){
		$(putId).append(data);
	});
	*/
}


