﻿$(function(){
	var hostname = window.location.hostname;
	var rss_url = '../rss.php';
	var limit = 5;
	var item_count = 0;
	var news_lt = $('#news-lt');
	$.ajax({
		url: rss_url,
		cache: false,
		success: function( rss ){
			news_lt.empty();
			$(rss).find('item').each(
				function(){
					if( item_count < limit ){ 
						var title = $(this).find('title').text();
						var pub_date = $(this).find('pubDate').text();
						var date_obj = new Date( pub_date );
						var year = date_obj.getFullYear();
						var month = date_obj.getMonth()+1;
						var day = date_obj.getDate();
						var date_text = year+'/'+month+'/'+day;
						var link = $(this).find('link').text();
						
						news_lt.append( '<li><p class="day">' + date_text + '</p><p class="b-title"><a href="' + link + '" target="_blank">'  +   title + '</a></p></li>');
					}
			    	item_count++;
				}
		    );
		},
		erorr: function(){
			news_lt.empty().append('<li><a href="http://www.daiei-co.com/test/rss.php">最新記事を読み込み中です</a></li>');
		}
	});
});
