$(function() {
	function headline() {
		setTimeout(function() {
			headline();
			$("#news li").not(':first').css('display', 'none');
			$("#news li:first").fadeOut('normal', function() {
				$(this).next().fadeIn('normal');
				$(this).clone().appendTo("#news ul");
				$(this).remove();
			});
		}, 4000);
	}
	var n_size = $("#news li").size();
	if(n_size > 1) {
		headline();
	}
});
