// Box news scrolling

$(function() {
	var heightScroll=$("#scroller").height();
	var animateScroll = function() {
		$("#scroller").css("margin-top",100).animate({ marginTop: -(heightScroll+20) },20000,"linear",function (){ animateScroll(); })
	}
	animateScroll();	
});