$(document).ready(function() {
 
  $('a.title').cluetip({splitTitle: '|'});

  $('a.toolies').cluetip({
  	'sticky': true,	
	'closePosition': 'title',
	arrows: true,
	width:400,
	dropShadow: false,
	closeText: '<b>Close [X]</b>',
	ajaxCache: true
	});
	
	$('body').click(function() {
			
	if ($("div#cluetip").length > 0 ) {
		
		$('div#cluetip').hide();
				 	
	}
		 
	 });

	 $('div#cluetip').click(function(event){
     event.stopPropagation();
	 });

});