// Custom cluetip layouts

$(document).ready(function() {

  initBindings();

});



function initBindings()
{
  $('a.jt').cluetip({
    cluetipClass: 'jtip', 
    arrows: true, 
    ajaxCache:        false,  
    dropShadow: false,
    hoverIntent: false,
    sticky: true,
    mouseOutClose: true,
    closePosition: 'title',
    closeText: '<img src="/images/site/cross.png" alt="Close" />'
  });
  
  
  $('a.jt_click').cluetip({
    cluetipClass: 'default', 
    activation: 'click',
    arrows: true, 
    ajaxCache:        false,  
    dropShadow: false,
    hoverIntent: false,
    sticky: true,
    mouseOutClose: true,
    closePosition: 'title',
    closeText: '<img src="/images/site/cross.png" alt="Close" />'
  });
}

