$(document).ready(function () {

    $gallery = $('#gallerySlideshow');

    if ($gallery.length > 0 && $gallery.children().length > 0) {


        $gallery.find(".gallery").cycle({
            fx: 'fade',
            pause: '1',
            timeout: 10000,
            speed: 1000,
            pager: '.galleryNav',
            pagerAnchorBuilder: function (idx, slide) {
                return '<a href="#"><div class="whiteBox"><div class="blackBox"></div></div></a>';
            },
            slideExpr: '.panel-content'
        });

    }

    $gallery.find(".panel-content").removeClass("hidden");
});
