window.addEvent('domready', function() {
	var calendarTip = new Tips($$('.calendarTip'), {
		initialize:function(){
			this.fx = new Fx.Style(this.toolTip, 'opacity', {duration: 500, wait: false}).set(0);
		},
		onShow: function(toolTip) {
			this.fx.start(1);
		},
		onHide: function(toolTip) {
			this.fx.start(0);
		},
        maxTitleChars: 100   //I like my captions a little long
	});
	
	/*var slideForm = new Fx.Slide('subcalendar_form', {transition: Fx.Transitions.Expo.easeIn});
	slideForm.hide();
	$('toggle_form').addEvent('click', function(e) {
		e = new Event(e);
		slideForm.toggle();
		e.stop();
	});*/
});

