$(function(){
	$('div.calendar a').tooltip({
		track: true, 
		delay: 0, 
		bodyHandler: function() { 
			return $(this).next('div:hidden').html(); 
		},
		showURL: false
	});
	
	$('div.content-next a[title]').tooltip({
		track: true, 
		delay: 0, 
		showURL: false		
	});
	
});