//Loads the calander after page has been changed
	function loadCalendar() {
		
		$(document).ready(function() {
		
			$('#calendar').fullCalendar({
				//Check for custom theme
				theme: true,
				//Define the header
				header: {
					left: 'prev,next today',
					center: 'title',
					right: 'month,agendaWeek,agendaDay'
				},
				editable: true,

				//Add Google events to calendar

				//US Holidays
				//events: $.fullCalendar.gcalFeed('http://www.google.com/calendar/feeds/usa__en%40holiday.calendar.google.com/public/basic'),
			
				//Link Fiji google calendar and load events
				events: $.fullCalendar.gcalFeed('http://www.google.com/calendar/feeds/nukappafiji%40gmail.com/public/basic'),

				//Event when you click on an event. Links to Fiji google calendar.
				eventClick: function(event) {
					// opens events in a popup window
					window.open(event.url, 'gcalevent', 'width=600,height=400');
					return false;
				},

				//Check to see if  loaded
				loading: function(bool) {
					if (bool) {
						$('#loading').show();
					}else{
						$('#loading').hide();
					}
				}
			});
		
		});
	
	}
