$(document).ready(function(){
	$('#calendar').fullCalendar({
		editable: false,
		
		events: "/news/getevents",
		
		loading: function(bool) {
			if (bool) $('#loading').show();
			else $('#loading').fadeOut("slow");
		}
	})
	
});
