/* 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'});
 
//default theme
	$('a.title').cluetip({splitTitle: '|'});
	$('a.titlesmall').cluetip({splitTitle: '|'});
	$('span.title').cluetip({splitTitle: '|'});
	$('#sticky').cluetip({sticky: true, closePosition: 'title', arrows: true,width:400});
	$('a.custom-width').cluetip({width: '400px', showTitle: false});
	$('a.fancybox').fancybox({
		'overlayShow': true,
		'overlayOpacity': 0.7,
		'easingIn': 'easeOutBack',
		'easingOut': 'easeInBack',
		'frameWidth' : 700,
		'frameHeight': 500,
		'hideOnContentClick': false
	});
});


