$(function() {
	$('#photos').cycle({
        fx:     'fade',
        speed:  'slow',
        timeout: 5000,
        pager:  '#thumbNail',
        pagerAnchorBuilder: function(idx, slide) {
            // return sel string for existing anchor
            return '#thumbNail li:eq(' + (idx) + ') a';
        }
    });
	$('#photos').css('display', 'block');
});