$(function() {
	$('.vertical-ticker').each(function() {
		var $this = $(this);
		var $new = $('<div/>').appendTo($this);
		$new.html($this.find('> *:first').html());
		$this.cycle({ 
		    fx:      'scrollUp',  
		    speed:    90000, 
		    timeout:  0,
		    delay:  -900,
		    continuous: true,
		    easing: 'linear',
		    pause: true
		});	
	});
});
