
$(document).ready(function() {
	if($("#bloglist_500").html()){
		$.getJSON(
			'http://' + location.hostname + '/bloglist/get_list_json.php',
			function(data, status){
				$("#bloglist_500").html(data.html_str);
				$("#bloglist_500").css("height","270px");
				//alert($("#bloglist_500").html());
			}
		);
	}
});

