$(document).ready(function() {
  $('a.jt').cluetip({   cluetipClass: 'jtip', 
 width:  '560',  
 height: '590', 
 arrows: true, 
 dropShadow: true,
 hoverIntent: false,
 sticky: false,
  mouseOutClose: true,
    onActivate: function(e) {
    var cb = $('#cb')[0];
    return !cb || cb.checked;
  },
   hoverIntent: {
    sensitivity:  7,
    interval:     100,
    timeout:      1    
  }
  });
});