    jQuery.fn.fadeToggle = function(speed, easing, callback) {

    return this.animate({height: 'toggle', width: 'toggle'}, "slow", easing, callback);

    };
    
    
    
    jQuery.fn.fadeToggleMin = function(speed, easing, callback) {

    return this.animate({height: 'toggle'}, "slow", easing, callback);

    };
