var url = "http://share.or.jp/shop/rss.php?num=5";

$.ajax({
	type: 'GET',
	url: url,
	cache : false,
	dataType : 'json',
	success: function(json){
        $.each(json, function(){
            $("#news04 .newsBlock").append("<dt></dt>");
            $("#news04 .newsBlock dt:last").addClass("arrow");
            $("#news04 .newsBlock dt:last").text(this.date);

            $("#news04 .newsBlock").append("<dd></dd>");
            if (this.link.length > 0) {
                $("#news04 .newsBlock dd").append("<a></a>");
                $("#news04 .newsBlock dd:last a").attr("href", this.link);
                $("#news04 .newsBlock dd:last a").text(this.title);
            }

            $("#news04 .newsBlock dd:last").append("<p></p>");
            $("#news04 .newsBlock dd:last p").html(this.description);

        });
	}
});

