[jQuery] Cluetip with live

[jQuery] Cluetip with live


I'm currently using cluetip with livequery, but is it possible to use
it with live too?
    $('#mydiv a.tooltip').livequery(function(event) {
        $(this).cluetip({cluetipClass: 'tooltipclass', width: 400});
    });
Using the below code doesn't seem to work very well if the content has
been dynamically added. I must hover a.tooltip twice for the tooltip
to open up, and hovering a third time sometimes brings up broken
tooltip content.
    $('#mydiv a.tooltip').live('mouseover', function(event) {
Any ideas?
Thanks! :)
Regards,