$(document).ready(function() {
	
	$('#calendar').fullCalendar({
		theme: true,
		header: {
			left: 'prev,next today',
			center: 'title',
			right: 'month,agendaWeek,agendaDay'
		},
		editable: true,
		
		// CPSS Calendar
		events: $.fullCalendar.gcalFeed('http://www.google.com/calendar/feeds/billsoukup1%40gmail.com/public/basic'),
		
		eventClick: function(event) {
			// opens events in a popup window
			window.open(event.url, 'gcalevent', 'width=700,height=600');
			return false;
		},
		
		loading: function(bool) {
			if (bool) {
				$('#loading').show();
			}else{
				$('#loading').hide();
			}
		}
		
	});
	
});
