jQuery(document).ready(function(){
	jQuery('.calendar-cell-active').bt({
		  closeWhenOthersOpen: true,
		  trigger: 'click', 
		  positions: 'top',
		  contentSelector: "jQuery('#'+this.id+'-content')",
		  padding: 20,
		  width: 160,
		  centerPointX: 0.8,
		  spikeLength: 30,
		  spikeGirth: 20,
		  cornerRadius: 10,
		  fill: 'rgba(172, 170, 168, .9)',
		  strokeWidth: 1,
		  strokeStyle: '#464656',
		  cssStyles: {color: '#1d1e27', fontWeight: 'bold', fontSize: '11px'}
	});
	jQuery('.baloon-close-btn').live('click', function(){
		jQuery('#'+this.id.substring(0,this.id.length-2)).btOff(); 
	});
	
});
