$(function(){
	$.ajax({
    type: "post",
    url: "index.php?c=article&a=ajaxlist",
	beforeSend: function(XMLHttpRequest){
		$(".newsContent").html('<img src="images/loading.gif" />');
	},
    success: function(data, textStatus){
		var json=json_parse(data);
		show_news(json);
	},
	complete: function(XMLHttpRequest, textStatus){	
		//alert(3);
	},
	error: function(){
		$(".newsContent").html('');
		$(".newsContent").html('<img src="images/loading.gif" />');
	}
	});
});

function show_news(json){
	var html='';
	html+='<ul><li><strong>'+json.i0.date+'</strong><a href="index.php?c=article&a=view&artid='+json.i0.artid+'" target="_blank">'+json.i0.short+'</a></li>';
    html+='<ul><li><strong>'+json.i1.date+'</strong><a href="index.php?c=article&a=view&artid='+json.i1.artid+'" target="_blank">'+json.i1.short+'</a></li>';
	html+='<ul><li><strong>'+json.i2.date+'</strong><a href="index.php?c=article&a=view&artid='+json.i2.artid+'" target="_blank">'+json.i2.short+'</a></li>';
	html+='<li class="noBg_1"><strong>'+json.i3.date+'</strong><a href="index.php?c=article&a=view&artid='+json.i3.artid+'" target="_blank">'+json.i3.short+'</a></li></ul>';
	$(".newsContent").html();
	$(".newsContent").html(html);
}
