
function jQuery_setClass_impl( c, flag ) {
//  console.log( this, ".setClass", arguments );
    if ( flag ) {
        jQuery.className.add( this, c );
    } else {
        jQuery.className.remove( this, c );
    }
};

jQuery.fn.setClass = function() {
    return this.each( jQuery_setClass_impl, arguments );
};

