$(document).ready(function(){
	var _arrow;
	$('.calendar a.tip').hover(function(){
		_arrow = $('<div class="arrow"></div');
		$(this).before(_arrow);
		_arrow.css('margin-left', ($(this).outerWidth() - _arrow.width())/2);
	}, function(){
		_arrow.remove();
	});
});

