window.addEvent('domready', function() {

var Tips2 = new Tips($$('.album a', '.single a'), {
	showDelay: 700,
	//fixed: true,
	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);
	}
});

});