window.addEvent('domready', function() { 
	$$('#menu a').each(function(a) {
		if (a.getProperty('title') != null && a.getProperty('title') != '') {
			var content = a.getProperty('title').split('::'); 
			a.store('tip:title', content[0]); 
			a.store('tip:text', content[1]);
			a.addClass('show-tooltip');
		}
	});
	var tips = new Tips('#menu a.show-tooltip',{
		className: 'tooltip',
		fixed: false,
		hideDelay: 50,
		showDelay: 50
	});
});