



// Slideshow 

    $(function() {
        $('.slider').cycle({
            fx: 'fade',
            timeout: 8000,
            pager: '#sliderNav',
            pagerAnchorBuilder: pagerFactory
        });
        function pagerFactory(idx, slide) {
            var s = idx > 2 ? ' style="display:none"' : '';
            return '<li><a href="#"></a></li>';
        };
    });


    $(function () {
        $('#footerSlideShow').cycle({
            fx: 'fade',
            timeout: 0,
            prev: '#prev',
            next: '#next'
        });
    });



// Sticky panel



    $().ready(function() {
        var stickyPanelOptions = {
            topPadding: 20,
            savePanelSpace: true,
			afterDetachCSSClass: ""
        };

        // multiple panel example (you could also use the class ".stickypanel" to select both)
        $(".ContainerVar").stickyPanel(stickyPanelOptions);


    });



