// TOOL TIP FUNCTION
	window.addEvent('domready', function(){		
	var theTips = new TipsX3($$('.tipper'), {
	initialize:function(){
		this.fx = new Fx.Style(this.toolTip, 'opacity', {duration: 500, wait: true}).set(0);
	},
	onShow: function(toolTip) {
		this.fx.start(1);
	},
	onHide: function(toolTip) {
		this.fx.start(0);
	},
	maxTitleChars: 30,
		showDelay: 500,
		hideDelay: 500,
		className: 'tool',
		offsets: {'x': 8, 'y': 8},
		fixed: false,
		loadingText: 'Loading...',
		errTitle: 'Oops..',
		errText: 'There was a problem retrieving the tooltip.'
	
	});
	});