$(document).ready(function(){
    $(".calendar table td a.day_exhib").click(function() {
        $(this).next(".this_day_exhib").animate({opacity: "show"}, "slow");
				
				$(this).addClass('active_date');
	
	 $(".calendar table td a").not(".active_date").click(function(){
	  $(".this_day_exhib").not($(this).next()).animate({opacity: "hide"}, "fast");
	 $(".calendar table td a").not($(this)).removeClass('active_date');
	 });
	
	 return false;
});	
	$("a.close").click(function(){
        $(this).parent(".this_day_exhib").animate({opacity: "hide"}, "fast");
    
});
});
