$(document).ready(function(){
	$('div.verticalScroller').each(function(i){
		$(this).children('div.scrollerContents').each(function(i){
			var parent = $(this).parent().parent();
			var scroller = $(this).parent();
			scroller.css('width', parent.width());
			scroller.css('height', parent.height());
			$(this).css('top', scroller.height());
			scrollTextVertically(this);
		});
	});
});

function scrollTextVertically(element)
{
	$(element).animate(
		{
			top: (0 - $(element).height())
		}, 25000, function(){
			$(element).css('top', $(element).parent().height());
			scrollTextVertically(element);
		}
	);
}
