$(document).ready(function() {
			$('a.load-cluetip').cluetip ({
				local:true, 
				sticky: true, 
				closePosition: 'title', 
				arrows: false,
				cursor: 'pointer',
				activation: 'click',
				positionBy: 'fixed',
				topOffset: '6',
				leftOffset: '6',
				width: '400',
				hideLocal: false,
				cluetipClass: 'style1', 
   			dropShadow: false,
				titleAttribute: 'title',
				showTitle: true,
				closeText: 'x'
				});
				$('body').click(function(event) {
    			if ( !$(event.target).closest('#cluetip .load-cluetip').length) {
      			$(document).trigger('hideCluetip');
    			}
  });
		});