jQuery(function($){
	
	$('#datepicker table td').each(function () {
			var day = $(this).children('a').html();
			var tipContent = $('#tooltip' + day).html();

			if (day != null && tipContent != '') {
				$(this).simpletip({
					fixed: true,
					position: ["-250", "16"],
					content: tipContent
				});
			}
	});
	
});
