
var ajax_load = "<img src='http://www.independentfilmreviews.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('http://www.independentfilmreviews.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('http://www.independentfilmreviews.com/wp-content/themes/castiel/archive-loop.php', {
            order: $(this).html(),
            cat: $(this).attr('rel'),
            type: 'ASC'
        }, function () {
        	$(this).animate({ opacity: 1 }, 600);
        });
}); 

