
/* 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'});

//default theme
  $('a.aib-title').cluetip({
	splitTitle: '|',
    cluetipClass: 'jtip', 
    arrows: false, 
    dropShadow: false,
    sticky: true,
    mouseOutClose: true,
    width:            275,
    positionBy:       'auto',
    topOffset:        -15,
    leftOffset:       -15     
});


// jTip theme
  $('a.aib').cluetip({
    cluetipClass: 'jtip', 
    arrows: false, 
    dropShadow: false,
    sticky: true,
    mouseOutClose: true,
//    closePosition: 'title',
//    closeText: '<img src="/assets/cross.png" alt="close" />'
    width:            275,
    positionBy:       'auto',
    topOffset:        -15,
    leftOffset:       -15       
  });


});
  



