// Initialize the Full Calendar plugin$(document).ready(function() {
		$('#events-calendar').fullCalendar({
		
			defaultView: 'month',			// Change this to point to the Lubbock Karate Google Calendar
			events: 'https://www.google.com/calendar/feeds/fq98u9p0ttbrd07t5pk8bsqavk%40group.calendar.google.com/private-9bf0f31c799a8a72f109060fcb384424/basic',
			
			eventColor: '#068430',
			eventTextColor: '#ffffff',
			eventBorderColor: '#011407',
			
			loading: function(bool) {
				if (bool) {
					$('#loading').show();
				}
				else {
					$('#loading').hide();
				}
			}
			
		});
		
	});
