jQuery(function() {
    
    jQuery('#feature').cycle({
        prev:   '#prev',
        next:   '#next',
        timeout: 6000,
        after:   onAfter,

    });
    onAfter.apply(jQuery('td a:first')[0]);
});

    function onAfter() {
    jQuery('#output').html("Current anchor: " + this.href);
}

