window.addEvent('domready', function(){
	//store titles and text  
	$$('div.table_row_interpret').each(function(element,index) {  
         		var content = element.get('title').split('::');  
         		element.store('tip:title', content[0]);  
         		element.store('tip:text', content[1]);
	});  
       
	//create the tooltips  
	var tipz = new Tips('div.table_row_interpret',{
	initialize: function(){
		this.fx = new Fx.Tween(this.tip, {property: 'opacity', duration: 500, link: 'cancel'}).set(0);
	},
	onShow: function () {		
		this.fx.start(1);
	},
	onHide: function() {		
		this.fx.start(0);			
	},
         //className: 'table_row_interpret',  
     	fixed: true,
	offsets: {x: 350, y: 3},
        	hideDelay: 1500
	});  
	});
