/* 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() {

	// $.cluetip.setup({insertionType: 'insertBefore', insertionElement: 'div:first'});

	//default theme
	$('a.title').cluetip({ splitTitle: '|' });
	$('a.basic').cluetip();
	$('a.custom-width').cluetip({ width: '200px', showTitle: false });
	$('h4').cluetip({ attribute: 'id', hoverClass: 'highlight' });


	$('a.load-local').cluetip({ local: true, hideLocal: true, arrows: true, cursor: 'pointer' });
	$('a.load-local-click').cluetip({ local: true, activation: 'click', hideLocal: true, arrows: true, cursor: 'pointer' });
	$('a.load-local-jtip').cluetip({ local: true, hideLocal: true, arrows: true, cursor: 'pointer', cluetipClass: 'jtip' });
	$('a.load-local-jtip-click').cluetip({ local: true, hideLocal: true, activation: 'click', arrows: true, cursor: 'pointer', cluetipClass: 'jtip' });
	$('a.sticky').cluetip({ sticky: true, 'closePosition': 'title', local: true, hideLocal: true, cluetipClass: 'jtip', arrows: true, cursor: 'pointer' });
	$('a.sticky-click').cluetip({ sticky: true, 'closePosition': 'title', activation: 'click', local: true, hideLocal: true, cluetipClass: 'jtip', arrows: true, cursor: 'pointer' });
	$('a.view-larger-image').cluetip({ width: 1, topOffset: -100, leftOffset: -800, sticky: true, 'closePosition': 'top', showTitle: false, activation: 'click', local: true, hideLocal: true, cluetipClass: 'jtip', arrows: false, cursor: 'pointer' });


});

