window.addEvent('domready', function() {
	var calendarTip = new Tips($$('.calendarTip'), {
		showDelay: 400,
        hideDelay: 400,
        fixed: true
    });
});

/* This is the old function, I  took out because the tool tip didn't work well when scrolling down in IE */
/*
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: 200   //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();
   // });
}); */
