$(document).ready(function( ) {
  $('.titleTip').cluetip({
    splitTitle: '|',
    leftOffset: 0
  });

  $('.tip').cluetip({
    arrows: false,
	width: 600,
	dropShadow: false,
    fx: {             
      open: 'fadeIn',
      openSpeed:  500
    }
  });

  $('.localTip').cluetip({
    local: true,
    sticky: true,
    closePosition: 'bottom',
    arrows: false,
    cluetipClass: 'jtip'
  });
});

