window.addEvent('domready', function() {
	new Request({
		url: '/scripts/calendar.cgi',
		method: 'get',
		onComplete: function() {
			$('calendar_bin').set('html', this.response.text);
		}
	}).send();
});