$(document).ready(function(){
    
	var intIndex = 0;
	setInterval(function() {
		
		$("#scroll-news-1").animate({"top": "-=75px"}, "slow");
		$("#scroll-news-2").animate({"top": "-=75px"}, "slow");
		$("#scroll-news-3").animate({"top": "-=75px"}, "slow");
		$("#scroll-news-4").animate({"top": "-=75px"}, "slow", function() {
			
			if (intIndex == 1) {
				$("#scroll-news-1").css({"top": "225px"});
			}
			if (intIndex == 2) {
				$("#scroll-news-2").css({"top": "150px"});
			}
			if (intIndex == 3) {
				$("#scroll-news-3").css({"top": "75px"});
			}
			if (intIndex == 4) {
				intIndex = 0;
				$("#scroll-news-4").css({"top": "0"});
			}
			
		});

		intIndex++;		
	}, 5000);

});
