window.addEvent('domready',function() {

	var t = new Tips($$('.sgtip'), {
				initialize:function(){
					this.fx = new Fx.Style(this.toolTip, 'opacity', {duration: 500, wait: false}).set(0);
				},
				onShow: function(toolTip) {
					//alert("huhu");
					//var content = this.getProperty('title');
					//alert(content);
					this.fx.start(1);
				},
				onHide: function(toolTip) {
					this.fx.start(0);
				}
			});

								

	$$('.sgtip').each(function(tip){

		
	});

});



