How to extend the $.curCss ?

How to extend the $.curCss ?

I try to extend the curCss with some navigators names like (moz|webkit).
Here is my code. It add them in the $.support.
But how to extend the $.fn.css and the $.fn.animate with them ?

  1.     // Extend the jQuery.support with normalized names.
  2.     // $.support.css = { Name : (Moz|Webkit)Name }
  3.     jQuery.support.css = (function()
  4.    {
  5.         var
  6.             // Cache
  7.             cache = {},
  8.                  body = document.getElementsByTagName('body')[0] ,
  9.               camelcase = function(str){
  10.                 return str
  11.                         .toString().toLowerCase()
  12.                         .replace(/(-)(\w)?/g, function(a,b,c){ return c ? c.toUpperCase() : '' ; })
  13.                         .replace( 'Webkit', 'webkit' )
  14.                         .replace( 'Kml', 'kml' ) ; // not tested
  15.             },
  16.             standard = function(str){ return str.replace( /^(Moz|kml|webkit|O)(\w)/, function(a,b,c){ return c ? c.toLowerCase() : '' ; } ) },
  17.             view = document.defaultView ;
  18.  
  19.         // Opera // ie not tested
  20.          if ( body.currentStyle )
  21.          {
  22.             var cs = body.currentStyle ;
  23.             for( k in cs ) if( typeof k === 'string' ) cache[ standard(k) ] = k ;
  24.          }
  25.         
  26.          // Moz, Webkit
  27.         else if( view && view.getComputedStyle )
  28.         {
  29.             var k, cs = view.getComputedStyle(body, "" ) || [] ;
  30.             for( k in cs ) if( /\d/.test(k) ) cache[ standard( camelcase(cs[k]) ) ] = camelcase(cs[k]) ;
  31.         }

  32.         // Clear
  33.         camelcase = standard = null ;
  34.         return cache ;

  35.     })() ;

  36.     // Add generics names to jquery support ( $.support.cssBoxShadow... )
  37.     var k, v ;
  38.     for( k in jQuery.support.css )
  39.     {
  40.         if( v = k.match( /transform|transition|boxShadow|borderRadius|column/i ) )
  41.             jQuery.support['css'+v[0]
  42.               .replace( /^.?/, function(a){
  43.               return a.charAt(0).toUpperCase()+a.substr(1); } )] = true ;
  44.              }

  45. // See $.support in the dom console.
  46. // New properties are added with a normalized name.
  47. // if( $.support.cssBoxShadow ) $('div').css( $.support.css.boxShadow, '0 0 5px black' )
  48. // And i wan't to use a normalized name as: 
  49. // $('div').css( 'boxShadow', '0 0 5px black' )
  50. // How to do that ?
Thanks.