jQuery.fn.change_slide = function(item) {

    jQuery(this).each(function() {

        var cnt = jQuery(this);

        var total = cnt.find(item).length;

        if (total > 1) {

            setInterval(function() {

                var current = cnt.find(item).index(cnt.find(item + ':visible'));

                if (current < total - 1) {

                    current++;

                } else {

                    current = 0;

                }

                cnt.find(item + ':visible').fadeOut("slow");

                cnt.find(item + ':eq(' + current + ')').fadeIn("slow");

            }, 11000);

        }

    });

}
