function siteFeed(){

	var cont = 0;
	var con = 0;

	$.ajax({
		url: "http://www.yoshiryu.jp/news/feed",
		cache: false,
		dataType:"xml",
		success: function(xml){
			
			$(xml).find('channel').find('item').each(function(){
				
				var category = $(this).find('category').text();				
				var title = $(this).find('title').text();
				var url = $(this).find('link').text();
				var str = $(this).find('pubDate').text();				
				times = new Array();
				times = str.split(' ');
				switch(times[2]){
					case "Jan":
						times[2] = "01";
						break;
					case "Feb":
						times[2] = "02";
						break;
					case "Mar":
						times[2] = "03";
						break;
					case "Apr":
						times[2] = "04";
						break;
					case "May":
						times[2] = "05";
						break;
					case "Jun":
						times[2] = "06";
						break;
					case "Jul":
						times[2] = "07";
						break;
					case "Aug":
						times[2] = "08";
						break;
					case "Sep":
						times[2] = "09";
						break;
					case "Oct":
						times[2] = "10";
						break;
					case "Nov":
						times[2] = "11";
						break;
					case "Dec":
						times[2] = "12";
						break;
				}	//switch
				
				
				/*********************************************
				お知らせ用
				*********************************************/
				if (cont <= 5) {
					
					if (category == "お知らせ") {
						var time = times[3]+"/"+times[2]+"/"+times[1];
						$('<dt></dt>').html(time).appendTo('dl#feedList');
						$('<dd></dd>').html('<a href="'+url+'">'+title+'</a>').appendTo('dl#feedList');
						
						$('dl#feedList dd:nth-child(n)').addClass('BorderA');
						//$('dl#feedList dd:nth-child(1)').addClass('NoneBorder');
						//$('dl#feedList dd:nth-child(1)').css('margin-bottom','0');
					}	//if
					
					cont++;
				}	//if
				
				
				/*********************************************
				更新履歴用
				*********************************************/
				if (con <= 5) {
					
					if (category == "更新履歴") {
						var time = times[3]+"/"+times[2]+"/"+times[1];
						$('<dt></dt>').html(time).appendTo('dl#updateList');
						$('<dd></dd>').html('<a href="'+url+'">'+title+'</a>').appendTo('dl#updateList');
						
						$('dl#updateList dd:nth-child(n)').addClass('BorderA');
					}	//if
					
					con++;
				}	//if
				

			});	//$(xml).find('channel').find('item').each()
		
		}	//success
		
	});	//$.ajax
	
}	//siteFeed
