$(document).ready(function(){
 $(function() {
 $('#top_news').after('<div id="nav" class="nav">').cycle({
 fx: 'scrollHorz',
 speed: 'fast',
 timeout: 5000,
 pager: '#nav',
 after: function() { if (window.console) console.log(this.src); }
 });
 
 $('#top_news').hover(
function() { $('#top_news').cycle('pause'); return false; },
function() { $('#top_news').cycle('resume'); return false; }
); 

}); 
}); 