/* the next line is an example of how you can override default options globally (currently commented out) ... */
 // $.fn.cluetip.defaults.tracking = true;
 
$(document).ready(function() {

	// $.cluetip.setup({insertionType: 'insertBefore', insertionElement: 'div:first'});
	$('ol.rounded img').cluetip({splitTitle: '|', dropShadow: false, cluetipClass: 'rounded', showtitle: true, arrows: true, width: 175, cursor: 'pointer', positionBy: 'fixed', topOffset: 8});
	$('.why_cc').cluetip({splitTitle: '|', dropShadow: false, cluetipClass: 'rounded', showtitle: true, arrows: true, width: 350, cursor: 'pointer', positionBy: 'fixed', topOffset: 8});

});

