$(document).ready(function() {
	$('#tab_calendario .dia').hide();
	$('#tab_calendario td.td_marcado1 a').mouseover(function() {
		$(this).next().fadeIn();
	}).mouseout(function() {
		$(this).next().fadeOut();
	});
});
