/**********************************************************************************************************************
 Author : Xiu qiang Chu
 Select Category
 *********************************************************************************************************************/
(function($) {
    $.fn.cxqSelect = function(options) {

        var defaults = {
            container :'.portfolioPost',
            animationSpeed : 800

        };

        var options = $.extend(defaults, options);

        this.each(function() {
            var _this = $(this);
            _this.change(function() {
                var value = $(this).attr('value');

                // if value is not empty do function
                if (value.length > 0) {
                    changeHandler(value);
                }
            });

            function changeHandler(value) {
                var speed = options.animationSpeed,
                        container = options.container,
                countItem = $(container).length;

                if (value == 'portfolio-all') {

                    var showItems = $(container).not(':hidden');
                    if (showItems.length != countItem) {

                    for (var i = 0; i < showItems.length; i++) {
                        var showItem = showItems[i];
                        $(showItem).fadeOut(speed);
                    }
                        $(container).fadeIn(speed);
                        
                        
                    }
                } else {
                    $(container).not('.' + value).fadeOut(speed,function() {
                        $('.' + value).fadeIn(speed)

                    })
                }
            }
        });
    };
})(jQuery);

$(document).ready(function($) {
    $(".portfolio-select").cxqSelect();
});
/*notifier*/

