/**
 * @fileoverview fbnCal Calendar widget. Include this file in your HTML page.
 * Includes fbnCal Calendar modules: calendar-core.js, calendar-date-core.js, calendar-setup.js.
 *
 * <pre>
 * Copyright (c) 2004-2006 by fbnCal, Inc.
 * http://www.fbnCal.com
 * 1700 MLK Way, Berkeley, California,
 * 94709, U.S.A.
 * All rights reserved.
 * </pre>
 */

/**
 * @private Get path to this script
 */
if (!window.fbnCal || (fbnCal && !fbnCal.include)) {
	alert("You need to include fbnCal.js file!");
} else {
	fbnCal.calendarPath = fbnCal.getPath();
	
	// Include required scripts
	fbnCal.Transport.include(fbnCal.calendarPath + 'calendar-core.js');
	fbnCal.Transport.include(fbnCal.calendarPath + 'calendar-date-core.js');
	fbnCal.Transport.include(fbnCal.calendarPath + 'calendar-setup.js');
}

window.calendar = null;		/**< global object that remembers the calendar */

// initialize the preferences object;
// embed it in a try/catch so we don't have any surprises
try {
	fbnCal.Calendar.loadPrefs();
} catch(e) {};

