// JavaScript Document

$(document).ready(function() {

	$('#calendar').fullCalendar({
		draggable: false,
		weekStart: 1,
		events: "index.php?id=379&user_a001calendar_pi1[mode]=json",
		eventClick: function(event, delta) {
	
	if( !!$('#JT').size() == true) { 
		$('#JT').remove();
	}
	 JT_show(event.url, $(this).attr('id'), event.title, $('#calendar'));
	   return false;	
  },
  dayClick: function(date)  {
	  $('#JT').remove();
  },
  monthDisplay: function(year, month, monthTitle) {
	  $('#JT').remove();
  },
		loading: function(bool) {
			if (bool) $('#loading').show();
			else $('#loading').hide();
		}
	});
	
});