$(document).ready(function() {
	$('.calendar td.promo').mouseenter(function() {
		$(this).addClass('hover');
	});
	$('.calendar td.promo').mouseleave(function() {
		$(this).removeClass('hover');
	});

	$("a[rel^='prettyPhoto']").prettyPhoto();
});
