$(function() {
	$("a.tooltip").tooltip();
	$('#newscontainer').hover(
        function() { 
        	$('#paused').fadeIn('fast');
        	$('#news').cycle('pause'); 
        	return false; 
        }, function() { 
        	$('#paused').hide();
        	$('#news').cycle('resume'); return false; 
        }
    );
	$("#news").cycle({
		pager: '#navi',
		fx: 'scrollUp',
		timeout: 7000,
		height: 'auto'
	}); 
});
