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

	//store titles and text
	$$('a.tips').each(function(element,index) {
		var content = element.get('title').split('::');
		element.store('tip:title', content[0]);
		element.store('tip:text', content[1]);
	});

	var tips = new Tips($$('.tips'), {
		className: 'tips-container',
		showDelay: 400,
		hideDelay: 400,
		offsets: {'x': 17, 'y': -30},
		fixed: true
	});

});