function mesbulles(){
	$$('.Tips').each(function(el){
		var tipContent	= el.getProperty('title');
		var tipTitle	= tipContent;
		el.store('tip:title', tipTitle);
	});
	var Tips1 = new Tips($$('.Tips'),{
		timeOut: 700,
		maxTitleChars: 10,
	    offsets: {x: 10, y: 10},
	    fixed: true,
	    onShow: function(tip){tip.setStyle('opacity', '0.9');}
	});	
}

window.addEvent('load', function() {
	mesbulles();
});

if (self.parent.frames.length != 0)
	self.parent.location=document.location;