$(document).ready(function() {
  /* options at: http://plugins.learningjquery.com/cluetip/#options */
  $('.ccm-calendar-has-events').cluetip({
		  dropShadow:false,
		  showTitle:false,
		  sticky:true,
		  closeText:'x',
		  ajaxCache:false
  });
  
  $('#wrapper').click(function(){
	  if($('#cluetip').length) {
		  $('#cluetip').hide();
	  }
  });
});