function setfeeds() {
	
	$.ajax({
		url: './dat/whatsnew.xml',
		type: 'GET',
		dataType: 'xml',
		timeout: 10000,
		error: function(){
			alert("xmlファイルの読み込みに失敗しました");
		},
		success: function(xml){
			
			var html = '';
			var view = 0;
			
			$(xml).find("cont").each(function(){
				
				html += '<p>' + $(this).attr("date") +'<br />';
				html += $(this).text() +'</p>';
				
				if(view == 2){
					return false;
				}else{
					view++;
				}
				
			});
			
			$('#idx_list-feeds').append(html);
			
		}
    });
}
