
/* 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 = 'auto';
$(document).ready(function() {

 // $.cluetip.setup({insertionType: 'insertBefore', insertionElement: 'div:first'});
 // $.fn.cluetip.defaults.ajaxSettings.beforeSend = function(ct) {
 //     console.log(this);
 // };

// jTip theme
  $('a.jt').cluetip({
    cluetipClass: 'jtip', 
    arrows: true, 
    dropShadow: false,
    sticky: false,
    mouseOutClose: true,
    closePosition: 'title',
    closeText: '<img src="cross.png" alt="close" />'
  });

  $('a.jtb').cluetip({
    cluetipClass: 'jtip', 
    arrows: true, 
    dropShadow: true,
    sticky: true,
    mouseOutClose: false,
    closePosition: 'title',
    width: 250,
    closeText: '<img src="cross.png" alt="close" />'
  });

  $('a.jtc').cluetip({
    cluetipClass: 'jtip', 
    arrows: true, 
    dropShadow: true,
    sticky: false,
    mouseOutClose: true,
    closePosition: 'title',
    width: 250,
    closeText: '<img src="cross.png" alt="close" />'
  });


  $('a.jtd').cluetip({
    cluetipClass: 'jtip', 
    arrows: true, 
    dropShadow: true,
    sticky: true,
    mouseOutClose: false,
    closePosition: 'title',
    width: 350,
    closeText: '<img src="cross.png" alt="close" />'
  });
  
});
