jQuery( document ).ready(function( $ ) {
    var ajax_load = "<img src='https://www.popservations.com/wp-content/themes/castiel/images/loader.gif' alt='loading...' />";
        
    $("#order li a").toggle(
        function() {
            $('#order li a').removeClass("active");
            $(this).addClass("active");
            $( "#archive" ).animate({ opacity: 0 }, 100).load('https://www.popservations.com/wp-content/themes/castiel/archive-loop.php', {
                order: $(this).html(),
                cat: $(this).attr('rel'),
                type: 'DESC'
            }, function () {
                $(this).animate({ opacity: 1 }, 600);
            });
        }, function() {
            $('#order li a').removeClass("active");
            $(this).addClass("active");
            $( "#archive" ).animate({ opacity: 0 }, 100).load('https://www.popservations.com/wp-content/themes/castiel/archive-loop.php', {
                order: $(this).html(),
                cat: $(this).attr('rel'),
                type: 'ASC'
            }, function () {
                $(this).animate({ opacity: 1 }, 600);
            });
    }); 
    
    $(function () {
        $('#coda-slider-1').codaSlider({
            dynamicArrows: false,
            dynamicTabs: false,
            slideEaseDuration: 1000	
        });
    });

});