jQuery(function($){ handleTooltips(); });

function handleTooltips()
{
	$('#datepicker table td').each(function ()
	{
		var day = $(this).children('a').html();
		if(day < 10){ day = '0' + day; }
		var monthYear = $('#datepicker').attr('rel');
		
		var $tooltip = $('#tooltip' + day + '' + monthYear);
		var tipContent = $tooltip.html();

		if(day != null && tipContent != null)
		{
			$(this).addClass('events-active');
			
			if($tooltip.find('span.deadline').length >= 1){ $(this).addClass('events-deadline'); }
			
			$(this).simpletip({
				fixed: true,
				position: ["-250", "16"],
				content: tipContent
			});
		}
	});
}
