//var api_path = "http://mendukuri.bbmedia.jp/api/index.php?action_api_news=true";
var api_path = "http://www.mendukuri.com/api/index.php?action_api_news=true";


$(document).ready(function(){
	$.ajax({
		type: "GET",
		url: api_path,
		dataType: "xml",
		success: function(xml) {
			parseXml(xml);
		}
	});
});

function parseXml(xml)
{
	$(xml).find("item").each(function()
	{
		var date = $(this).children("date").text();
		var link = $(this).children("link").text();
		var title = $(this).children("title").text();
		var tgt = $(this).children("tgt").text();
		if(link){
			$(".topScroll").append(
				"<dl><dt>" + date + "</dt><dd><a href=\"" + link + "\" target=\"" + tgt + "\">" + title + "</a></dd></dl>"
			);
		}else{
			$(".topScroll").append(
				"<dl><dt>" + date + "</dt><dd>" + title + "</dd></dl>"
			);
		}
	});
}

