cluetip plugin problem - duplicate close buttons showing

cluetip plugin problem - duplicate close buttons showing

Safari 4.0.5 and FF 3.6.3 have this problem
IE and Chrome are ok

The first time when i click the link, two instances of close button shows. If during the same load, i click on another item, the previous clue tip hides and new one shows with only one close button.

Property closePosition "top and bottom" both have this behavior. closePosition value "title" only shows one close but it is not clickable.

JS Code:
  1. $('.RetrievePasswordForm').cluetip({
                                                 cluetipClass: 'rounded',
                                                 showTitle: true,
                                                 sticky: true,
                                                 ajaxCache: false,
                                                 arrows: true,
                                                 dropShadow: false,
                                                 activation: 'click', //click, hover
                                                 height: 'auto',
                                                 });









HTML:
  1. <a href="#" rel="test.htm" class="RetrievePasswordForm" title="Test">
                               <img alt="" src="/pics/btn/icons/view.GIF">
                           </a>


CSS to show X right next to close, this is the only change made at my end:
  1. .cluetip-rounded div#cluetip-close a {
      color: #800000;/*#777;*/
      background-image: url('/images/btn/icons/Delete.gif');
      background-repeat: no-repeat;
      padding-left: 15px;
    }






Thanks