//***********************************************************//
//**  WM_Gred                                               *//
//**  copyright (C) 2011 - WebMasher                        *//
//**  license GNU/GPL http://www.gnu.org/copyleft/gpl.html  *//
//***********************************************************//

window.addEvent("domready",function() {
	var a= new Tips($$('.tooltip'), {
	initialize:function(){
		this.fx = new Fx.Style(this.toolTip, 'opacity', {duration: 500, wait: false}).set(0);
	},
	onShow: function(d) {
		this.fx.start(1);
	},
	onHide: function(d) {
		this.fx.start(0);
	}
});
});
