[jQuery] clueTip's and Ajax

[jQuery] clueTip's and Ajax


I have a div that is periodically loaded with html via an Ajax query
and it may contain images which need clueTip's. The first time, the
clueTip is applied, but any subsequent requests and it does not (the
data is still loaded into the div correctly). Would removing the
clipTip help and if so, how would you do that?
Code:
$.cluetip.setup({insertionElement: '#ajaxdata'});
var $ajaxdata = $("#ajaxdata");
var ajaxUrl = "/ajaxdata.ashx";
load();
// reload after 20 minutes
var mins = 20;
setTimeout(load, mins * 60 * 1000);
function load()
{
    // add the time (as IE caches Ajax)
    var seed = (new Date()).getTime();
    $ajaxdata.load(ajaxUrl + "?s=" + seed, {}, function()
    {
        $(this).find("img").cluetip({splitTitle: '|', arrows: false, cursor:
'hand', hoverIntent:{interval: 100}});
    })
}