jQuery.paramUTF = jQuery.param;
// stolið beint úr jQuery 1.3.2 source kóðanum og breytt smá...
jQuery.paramISO = function( a ) {
    var s = [ ];
    function add( key, value ){
      // BREYTING: nota old-school escape() í stað encodeURIComponent()
      s[ s.length ] = tmUtil.escape(key) + '=' + tmUtil.escape(value); 
    };
    if ( jQuery.isArray(a) || a.jquery )
      jQuery.each( a, function(){ add( this.name, this.value ); });
    else
      for ( var j in a )
        if ( jQuery.isArray(a[j]) )
          jQuery.each( a[j], function(){ add(j, this); });
        else
          add( j, jQuery.isFunction(a[j]) ? a[j]() : a[j] );
    return s.join("&").replace(/%20/g, "+");
};
jQuery.fn.serializeISO = function () { return jQuery.paramISO( this.serializeArray() );};
