jQuery(document).ready(function($) {

$('#recentnews').cycle({
  fx:     'fade', 
  timeout: 6500,
  before: onBefore
});
 
function onBefore() { 
   $('#caption').html('<p><a href="' + $(this).attr('href') + '">' + $(this).attr('title') + '</a></p>'); 
};
 
});
