ap_list_functions.push(function(){
    if($('#carousel-3885558196').parents('.tab-pane').length)
    {		
        if(!$('#carousel-3885558196').parents('.tab-pane').hasClass('active'))
        {
            var width_owl_active_tab = $('#carousel-3885558196').parents('.tab-pane').siblings('.active').find('.owl-carousel').width();		
            $('#carousel-3885558196').width(width_owl_active_tab);
        }
    }
	$('#carousel-3885558196').imagesLoaded( function() {
		$('#carousel-3885558196').owlCarousel({
			items :             3,
			itemsDesktop :      [1200,3],
			itemsDesktopSmall : [992,2],
			itemsTablet :       [768,1],
			itemsMobile :       [576,1],
			itemsCustom :       [[0, 1], [481, 1], [576, 2], [768, 2], [992, 3], [1200, 3]],
			singleItem :        false,       // true : show only 1 item
			itemsScaleUp :      false,
			slideSpeed :        200,        //  change speed when drag and drop a item
			paginationSpeed :   800,       // change speed when go next page
			autoPlay :          true,       // time to show each item
			stopOnHover :       false,
			navigation :        true,
			navigationText :    ["‹", "›"],
			scrollPerPage :     false,
			pagination :        false,       // show bullist
			paginationNumbers : false,       // show number
			responsive :        true,
			responsiveRefreshRate : 0,
			lazyLoad :          false,
			lazyFollow :        false,       // true : go to page 7th and load all images page 1...7. false : go to page 7th and load only images of page 7th
			lazyEffect :        "fade",
			autoHeight :        false,
			mouseDrag :         true,
			touchDrag :         true,
			addClassActive :    true,
			direction:          false,
			afterInit: OwlLoaded,
			afterAction : SetOwlCarouselFirstLast,
		});
	});
});
function OwlLoaded(el){
    el.removeClass('owl-loading').addClass('owl-loaded').parents('.owl-row').addClass('hide-loading');
    if ($(el).parents('.tab-pane').length && !$(el).parents('.tab-pane').hasClass('active'))
        el.width('100%');
};