/**
 * @author ltrzcionka
 */
$(function() {
    $('#slideshow').cycle({
        fx:     'fade',
        speed:  'slow',
        timeout: 0,
        pager:  '#nav',
        pagerEvent: 'mouseover',
        pagerAnchorBuilder: function(idx, slide) {
            // return sel string for existing anchor
            return '.list li:eq(' + (idx) + ') ins.item_title';
        }
    });        
});
	
