I did this by altering Tipsy itself. Tipsy attaches the tooltip element to the document.body, in the Tipsy.prototype's show method:
$tip.remove().css({
top: 0,
left: 0,
visibility: 'hidden',
display: 'block'}).appendTo(document.body);
If you change the tip to be a child of the triggering element, then jQuery mouseleave won't fire if you are in the tooltip:
$tip.remove().css({
top: 0,
left: 0,
visibility: 'hidden',
display: 'block'}).appendTo(this.$element[0]);
In my case, I have a div with the title attribute that holds the tip, and the div holds the image that the user is targeting. (I don't know if this would work if the element holding the tip is childless, like an img.) I enable Tipsy on the div.