$(function(){
	$("#calendar a").click( function() {
		var content = $(this).attr('rel');
		
		$("#detailholder").html(content);
		
		$("#detailholder").show();
			
		$("#detailholder").click( function() {
			$("#detailholder").hide();		
		});
		return false;
	});
		
	
});

