[jQuery] Compression of jquery code?

[jQuery] Compression of jquery code?

As I'm getting closer to the point where my code actually works on
this project i'm doing, I've started to try to compress the code
using Dean Edwards' packer. ( http://dean.edwards.name/packer/ )
however, the resulting code doesn't actually run; there's probably a
semicolon missing somewhere, but I can't quite figure out how jqueric
code works with dean's rules of 'have a semicolon everywhere you
possibly can'.
snippet:
    dn.mousedown(function(){
        this.p.dd=true;
        this.p.sDn();
        return false;
    }).mouseup(function(){
        this.p.dd=false;
        return false;
    });
i can't have a semicolon after the end of the function definition,
like edwards asks you to...
    dn.mousedown(function(){
        this.p.dd=true;
        this.p.sDn();
        return false;
    };).mouseup(function(){
        this.p.dd=false;
        return false;
    };);
that creates invalid JS.
Also, thanks to the code being compressed, line numbers in firebug
don't really help me much.
I can't post my entire file right now since I'm trying to wrap it up
for a beta first... but I must be missing something. Any tips on
'packing' jqueric js?
R
_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/