jQuery(function() {
	jQuery.getFeed({
	url: "/common/js/blog_rss/proxy.php?url=http://teruko.lionshop.jp/feed/",
	success: function(feed) {
	var html = '';
	var htmlOther = '';
	
	for(var i = 0; i < feed.items.length && i < 2; i++) { //数字は件数
	var item = feed.items[i];
	var splitdate = new Date(item.updated);
	splitdate = new Array(splitdate.getFullYear(), (splitdate.getMonth()+1), splitdate.getDate());
	html+= '<dl>';
	html+= '<dt>'+splitdate[0]+"."+("0"+splitdate[1]).slice(-2)+"."+("0"+splitdate[2]).slice(-2)+'&nbsp;<a href="' + item.link + '">'+ item.title.slice(0,24) +'...</a></strong></dt>';
	html+= '<dd><a href="' + item.link + '">' + item.description.slice(0,31) + '...</a></dd>';
	html+= '</dl>';
	}
	jQuery('#TerukoBlogListPrint').append(html);
	jQuery('#TerukoBlogListPrint').show('slow');
	} 
	});
});
