jQuery(document).ready(function($) {
								
    $('#slideshow').cycle({
        fx:     'fade',
        speed:  100,
        timeout: 6000,
        next:   this.src,
        pager:  '#tnav',
        pagerAnchorBuilder: function(idx, slide) {
            // return sel string for existing anchor
            return '#tnav li:eq(' + (idx) + ') a';
        }
    });

});


