[jQuery] Cycle plugin pagerAnchorBuilder and livequery

[jQuery] Cycle plugin pagerAnchorBuilder and livequery


I have the following
$('#fcycle').livequery( function(){
         $(this).cycle({
            fx: 'fade',
            timeout: 0,
            speed: 'slow' ,
            pager: '#qm0',
            next: '#next',
            prev: '#prev',
            pagerAnchorBuilder: function(idx, slide) {
                // return sel string for existing anchor
                return '#qm0 li:eq(' + (idx) + ') a';
            };
        });
    });
which all works except for the pagerAnchorBuilder. How can I call the
function so it works via livequery.
Thanks