/* 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'});
 
$('a.title').cluetip({
		splitTitle: '|',
		cluetipClass:'jtip',
		arrows: true,
		hoverIntent: true,
		dropShadow: false,
		clickThrough: true,
		positionBy: 'fixed', topOffset: -10, 
		fx: {             
                      open:       'fadeIn', // can be 'show' or 'slideDown' or 'fadeIn'
                      openSpeed:  '900'
					  }
		});
});

