﻿$(document).ready(function() {
    $('#slideshow div').cycle({
        fx: 'fade',
        pager: '#thumbs',
        timeout: 6000,
        pagerAnchorBuilder: function(idx, slide) {
            return '#thumbs a:eq(' + idx + ') ';
        }
    });

    $('#thumbs a').click(function() {
        return false;
    });

});

