Thanks for the response!
I have tried adding
$('.effect').tipsy({delayOut: 1});
to the first call in the swapContent function that the onmousedown is calling, but it still doesn't seem to work. - I know "delayOut: 1" works because I have tested.
Here is what my swapContent function looks like if this helps anyone:
<script language="JavaScript" type="text/javascript">
function swapContent(truck) {
$('.effect').tipsy({delayOut: 1});
$("#trucks").html('<center><img style="margin-top:50pxl" src="/img/dana/loader.gif"></center>').show();
var url = "loadtruck.php";
var img = new Image();
img.src = "/img/dana/07volvo780-main.jpg";
$.post(url, {contentVar: truck} ,function(data) {
$("#trucks").hide();
$("#trucks").html(data).fadeIn('slow');
$("#info").slideto();
$(".fancyvideo").fancybox({
overlayShow: true,
frameWidth:640,
frameHeight:360
});
$("a.fancy").fancybox({
overlayShow : true,
overlayOpacity : 0.7,
transitionIn : "elastic"
});
$('.effect').tipsy({fade: true});
});
}
</script>