	$(document).ready(function(){
		$.ajax({
			type: "GET",
			url: "../notice/user_notice.xml",
			dataType: "xml",
			success: function(xml) {
				var rowcount = 0;
				$(xml).find('item').each(function(){
					// 表示レコード数変更する 5-->7-->13-->14
					if (rowcount < 14 ) {
					var title = $(this).find('title').text();
					var url = $(this).find('url').text().replace('notice.xml','notice/');
					var target = '';
					var targetv = $(this).find('target').text();
					if (targetv.length > 4)  {
							target = ' target="_blank"';
					}

					var edate = '';
					var edatev = $(this).find('date').text();
					if (edatev.length > 4)  {
							edate = '(' + edatev + ')';
					}
					var newv = '';
					var count = $('new', this).length;
					if (count > 0)  {
							newv = '<img src="/img/new_ani3.gif" alt="New!" />';
					}

						$('<li></li>').html('<a href="' + url + '"' + target +'>'
+title+'</a>' + edate + newv).appendTo('#kcnnews');

					}
					rowcount++;

				});
			}
		});
	});

