// JavaScript Document
$(document).ready(function(){	
	$('#homeCal').fullCalendar({
		header: false,
		draggable: false,
		weekMode: 'liquid',
		events: "/inc/data/eventsData.asp?enl=6",
		eventRender: function(event, element) {
		   element.attr('title', event.description);
		},
		aspectRatio: 2,
		loading: function(bool) {
		if (bool) 
			$('#loading').show();
			else 
			$('#loading').hide();
	}
	});
	$("#calNxt").click(function(){
		$('#homeCal').fullCalendar('incrementDate', 0, 1, 0)
		$('#calHd').html($.fullCalendar.formatDate($('#homeCal').fullCalendar('getDate'), 'MMMM yyyy'));
	});
	$("#calPrv").click(function(){
		$('#homeCal').fullCalendar('incrementDate', 0, -1, 0)
		$('#calHd').html($.fullCalendar.formatDate($('#homeCal').fullCalendar('getDate'), 'MMMM yyyy'));
	});
});
