// JavaScript Document
if(typeof Tips == 'function') {
var as = [];
	$$('.footertooltip').each(function(a){
		if (a.getAttribute('title')) as.push(a);
	});
	
	//new Tips(as, {maxOpacity: 0.9, maxTitleChars: 25});
	var Tips2 = new Tips(as, {className:'footertool',maxTitleChars: 35,showDelay:100,hideDelay:10,offsets: {'x': 15, 'y': 15}, 
	initialize:function(){
		this.fx = new Fx.Style(this.toolTip, 'opacity', {duration: 200, wait: false}).set(0);
	},
	onShow: function(toolTip) {
		this.fx.start(1);
	},
	onHide: function(toolTip) {
		this.fx.start(0);
	}
});
}