/**
 * Landing Custom Displays
 */
var landingCustomDisplays = {

    /**
     * Init
     */
    init : function()
    {
        if ($('.owl-carousel').length) {
            landingCustomDisplays.gallery();
        }
    },

    /**
     * Gallery
     */
    gallery : function()
    {
        var owl = $('.owl-carousel').owlCarousel({
            items         : 1.3,
            margin        : 16,
            stagePadding  : 24,
            dots          : true,
            center        : true,
            loop          : false,
            dotsContainer : '.owl-dots',
            responsive    : {
                992 : {
                    items        : 1,
                    stagePadding : 0,
                }
            }
        });

        // Custom navigation events
        $('.owl-carousel--custom-prev').click(function()
        {
            owl.trigger('prev.owl.carousel');
        });

        $('.owl-carousel--custom-next').click(function()
        {
            owl.trigger('next.owl.carousel');
        });
    }
};

/**
 * Init after page-load complete
 */
$(function()
{
    landingCustomDisplays.init();
});