var partialSlider = function () {
            var pos = this.data('cust-data') || 0;            if (pos == 0) {
                this.animate({ 'height': '75px' }, 300);
                pos = 1;
            } else {
                this.animate({ 'height': '95px' }, 300);
                pos = 0;
            }            this.data('cust-data', pos);
        };var pos = this.data('cust-data') || 0;这是什么意思