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


// Rounded Corner theme
  $('div.roundedLEFT a').cluetip({local:true, leftOffset: 0, closePosition: 'bottom', cluetipClass: 'rounded', dropShadow: false, hoverIntent: true, sticky: true, mouseOutClose: true, arrows: true});

  $('div.roundedRIGHT a').cluetip({local:true, leftOffset: 0, closePosition: 'bottom', cluetipClass: 'rounded', dropShadow: false, hoverIntent: true, sticky: true, mouseOutClose: true, arrows: true});

  $('td.StoreHeaderButtonPopup a').cluetip({local:true, leftOffset: 0, closePosition: 'bottom', cluetipClass: 'rounded', dropShadow: false, hoverIntent: true, sticky: true, mouseOutClose: true, arrows: true});

});

  



