
	// This needs to be added to the bottom of the content managed pages in case the
	// user chooses a side section that has a calendar on it

    // initialization block for all calendars on the page
    // A_CALENDARS array contains references to each calendar instance
	
	function SortCalendars() {
		
		if (!document.getElementById("date")) return false;
		
		for (var n = 0; n < A_CALENDARS.length; n++) {
			A_CALENDARS[n].create();
		}
	}
	
	SortCalendars()

