
/* the next line is an example of how you can override default options globally (currently commented out) ... */

 // $.fn.cluetip.defaults.tracking = true;


$.fn.cluetip.defaults.width = '300';
  
$(document).ready(function() {

// jTip theme
  $('a.jt').cluetip({                           /* povodne   $('a.jt:eq(0)').cluetip({  */
    cluetipClass: 'jtip', 
    showTitle: false,
    dropShadow: false,
    sticky: true, 
    mouseOutClose: true,
    closePosition: 'title',
    onActivate: function(e) {
      var cb = $('#cb')[0];
      return !cb || cb.checked;
    }
  });

});
  




