jQuery(document).ready(function($){
	$.getJSON(URLROOT + 'news.json?', function(json){
		if(json.data == undefined){
			$('table#news').append('<tr class="news_item"><td>新しいNewsは準備中です</td></tr>');
			return false;
		}
		for(i=0; i<json.data.length; i++){
			$('table#news').append('<tr class="news_item"><td><span class="date">' + json.data[i].ymd + '</sapn></td><td class="title"><a href="news/' + json.data[i].id + '">' + json.data[i].title + '</a></td></tr>');
			if(i > 10){
				break;
			}
		}
	});
	setTimeout(function(){
		$('#top_image_first').slideToggle(300);
		setTimeout(arguments.callee, 10000);
	}, 10000);
});


