$(function(){
	$.ajaxSetup({
		cache: false,
		error: function() {
			$('#news').find('p').text('現在新着情報は登録されていません。');
		}
	});
	$('#news').show().find('div').load('/news');
});
