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

	$('a.jt:eq(0)').cluetip({
      cluetipClass: 'jtip', 
      arrows: true, 
      dropShadow: false,
      hoverIntent: false,
      sticky: true,
	  ajaxCache: false,
      mouseOutClose: true,
      closePosition: 'title',
      closeText: '<img src="jquery/cross.png" alt="Bezárás" />'
    });

	$('a.title').cluetip({
		splitTitle: '|',
		dropShadow: true,
        hoverIntent: false,
		sticky: true,
        mouseOutClose: true,
	    closePosition: 'title',
        closeText: '<img src="jquery/cross.png" alt="Bezárás" />'
		});

});

