$(function() {
    $('#slideshow').cycle({
        speed:  'fast',
        timeout: 0,
        pager:  '#nav',
        pagerAnchorBuilder: function(idx, slide) {
            // return sel string for existing anchor
            return '#nav td:eq(' + (idx) + ') a';
        }
    });
});


$(function() {
    $('#popuptxt').cycle({
        speed:  'fast',
        timeout: 0,
        pager:  '#nav',
        pagerAnchorBuilder: function(idx, slide) {
            // return sel string for existing anchor
            return '#nav td:eq(' + (idx) + ') a';
        }
    });
});



