function doNewsScroller() {
	var theLength = $('.leftcontent.news article').length;
	if(theLength > 3){
		$('.leftcontent.news article:first-child').addClass("top").animate({"marginTop":"-69px"}, function(){
					$('.leftcontent.news article.top').css({"margin-top":"0"}).appendTo('.leftcontent.news').removeClass("top");
		});

		
	}
	setTimeout(doNewsScroller, 4000);
}


$(document).ready(function(){
	setTimeout(doNewsScroller, 4000);
});
