// JavaScript Document

 $(document).ready(function(){
        
 		$(function() {
				   
				$(".calendarCell > a").click(function() {
				$("div#itemData").load($(this).attr('href'));
				$("div#itemData").show("slow");
				$("div#close_calendar").show("slow");
				return false;
				});
				
				$("div#close_calendar").click(function() {
				$("div#itemData").hide("slow");
				$("div#close_calendar").hide("slow");
				return false;
				});
				

		});

});




