﻿$(function() {
    $('#slideshow').cycle({
        fx:     'fade',
        speed:  'slow', 
        timeout: 0,
        pager:  '#th',
        pagerAnchorBuilder: function(idx, slide) {
            // return sel string for existing anchor
            return '#th li:eq(' + (idx) + ') a';
        }
    });
});

