// NEWS FEED
$(document).ready(function(){	
	$('#news_content .onScreen').css('top','0px');
	var counter = 1;
	var listSize = $('#news_content > li').size();
	
	//NEXT FUNCTION
	function nextNews(){
		var onScreen = "#news_content .onScreen";
		
		if(counter < listSize){
			$(onScreen).removeClass('onScreen').stop(true, true).animate({top: "20px"}, 300).next().css('top','-20px').addClass('onScreen').animate({top: '0px'}, 300);
			counter++;
		}
		else{
			$(onScreen).removeClass('onScreen').stop(true, true).animate({top: "20px"}, 300);
			var test = $('#news_content li:first-child').css('top','-20px').addClass('onScreen').animate({top: '0px'}, 300);
			counter = 1;
		}
	};
	
	
	//ROTATOR
	var bannerRotate = setInterval(function(){
		nextNews();
	}, 3500);
	
	//CLICK EVENTS
	$('#nextNews').click(function(){nextNews();});
});
