Question regarding cluetip addon

Question regarding cluetip addon

I dont know if this is a cluetip or a jquery problem, but I am thinking it is the latter.

When I access an htm file to popup a window upon rollover of a link, I have to move over and out then back in again before the popup window will appear.

My example can be found here:

http://www.greenmediahosting.com/test2.htm

And the code looks like this:

<html>
<head >
<title>Test Title</title>

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js" type="text/javascript"></script>
<script src="http://www.greenmediahosting.com/cluetip/jquery.cluetip.js" type="text/javascript"></script>

<script type="text/javascript">
$(document).ready(function() {
$('a.jt:eq(0)').cluetip({
cluetipClass: 'jtip',
arrows: true,
dropShadow: false,
hoverIntent: false,
sticky: true,
mouseOutClose: true,
closePosition: 'title',
closeText: '<img src="cross.png" alt="close" />'
});
});
</script>

</head>
<body>
<a class="jt" href="ajax6.htm" rel="ajax6.htm" title="jTip Style!">testlink</a>
</body>
</html>

Thanks,

Baffled in Traverse City, Michigan