[jQuery] Newbie Cluetip Ajax Syntax Question

[jQuery] Newbie Cluetip Ajax Syntax Question


** I'm sorry if I'm double posting but my previous attempt seems to
have disappeared. **
Does the current Cluetip support the jquery 1.3 simplified Ajax $.get
technique?
$.get( url, params, callback )
Example: $.get("test.cgi", { name: "John", time: "2pm" } );
If so, I'm having a heck of a time trying to get it to work for me.
I'm trying to do this:
prodtips.php?p=mbt35
by doing this:
$('a.tt2').cluetip({ width: '360px', ajaxCache: true, arrows: true,
sticky: true, closePosition: 'title', ajaxSettings: { $.get
("prodtips.php", { p: "mbt35" } ) } });
and I'm getting a javascript error:
missing : after property id
that has me scratching my head. Can someone show me how to do this
simple passing of the query string?
Thanks.