$(document).ready(function(){
	$('#recent_posts').cycle({
		fx:    'scrollUp',
		timeout: 4000, 
    	speed: 1000
	});
		
	$('#recent_posts').hover(function(){
		$('#recent_posts').cycle('pause');
	}, function(){
		$('#recent_posts').cycle('resume');
	});
});
