

window.addEvent('domready',function() {
	/**
	 * Set up any tooltips we need
	 */
	var tips = new Tips($$('.toolTip'), {
		initialize:function() {
			this.fx = new Fx.Style(this.toolTip,'opacity',{duration: 500, wait: false, maxTitleChars: 100 }).set(0);
		},
		onShow:function(toolTip) {
			this.fx.start(1);
		},
		onHide:function(toolTip) {
			this.fx.start(0);
		}
	});
});
