// source --> https://atclip.jp/labo/wp-content/themes/oria/js/slider-init.js?ver=1 
jQuery(function($) {
	$(".oria-slider .slider-inner").owlCarousel({  
        items : 5,
        itemsCustom : false,
        singleItem: false,
        itemsDesktop : [1199,5],
        itemsDesktopSmall : [980,3],
        itemsTablet: [768,2],
        itemsTabletSmall: false,
        itemsMobile : [479,1],
        autoPlay : +sliderOptions.slideshowspeed,
        stopOnHover : true,
        navigation : true,
        navigationText : ["<i class='fa fa-long-arrow-left'></i>","<i class='fa fa-long-arrow-right'></i>"],
        rewindNav : true,
        pagination : false,
        autoHeight : true,
	})
});

jQuery(function($) {
    $(window).bind('load', function() {
        $('.oria-slider .slider-inner').fadeIn();
    }); 
});
// source --> https://atclip.jp/labo/wp-content/plugins/simple-tags/assets/frontend/js/frontend.js?ver=3.44.0 
jQuery(document).ready(function($) {
    // -------------------------------------------------------------
    //   Show More / Close Table Functions
    // -------------------------------------------------------------
    function showMore() {
        var rows = $(".taxopress-table-row");
        rows.each(function (index, row) {
            if (index >= 6) {
                $(row).show();
            }
        });
        $(".taxopress-see-more-link").hide();
        $(".taxopress-close-table-link").show();
    }
    
    function closeTable() {
        var rows = $(".taxopress-table-row");
        rows.each(function (index, row) {
            if (index >= 6) {
                $(row).hide();
            }
        });
        $(".taxopress-close-table-link").hide();
        $(".taxopress-see-more-link").show();
    }
    
    // Event listeners for Show More and Close Table
    $(document).on('click', '.taxopress-see-more-link', function (e) {
        e.preventDefault();
        showMore();
    });

    $(document).on('click', '.taxopress-close-table-link', function (e) {
        e.preventDefault();
        closeTable();
    });
});