[jQuery] ClueTip only working on first class instance

[jQuery] ClueTip only working on first class instance

Hi,
I've tried a few varieties, but I can't get the ClueTip to show up on more than one instance of a class in a page.  I'm using the first JTip example and code from the demo with no luck.  Did I miss anything?
Using class="jt" in various <a href> calls with the following jQuery:
$(document).ready(function() {
  $('a.jt:eq(0)').cluetip({
    cluetipClass: 'jtip',
    width: '175px',
    arrows: true,
    dropShadow: false,
    hoverIntent: false,
    sticky: true,
    mouseOutClose: true,
    closePosition: 'title',
    closeText: '<img src="/images/cross.png" alt="close" />'
  });
});
Thanks for the help...
ben