$(function() {
	$("#news-items a").hide();
	var artID=0;
	showArticle();
	
	function showArticle()
	{
		$("#news-items a").hide();
		$("#news-items a:eq("+artID+")").fadeIn(400);
		artID++;
		if (artID == 5 ) artID = 0;
		setTimeout(function() { showArticle() }, 4500);
	}
	
});

