﻿$('#gallery').cycle({
    fx: 'fade',
    pause: 1,
    after: onAfter,
    pager: '#navgallery',
    // callback fn that creates a thumbnail to use as pager anchor 
    pagerAnchorBuilder: function (idx, slide) {
        return '<li><a href="#"><img src="' + slide.src + '" width="100" height="100" /></a></li>';
    }
});
function onAfter() {
    $('#didagallery').html("" + this.title)
}
