/*window.onload=function()
{
	/* setup tooltips */
/*	var as = [];

	$S('a').each(function(a){
		if (a.getAttribute('title')) as.push(a);
	});

	new Tips(as, {maxOpacity: 0.9, maxTitleChars: 80});
}*/

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


    //store titles and text
    $$('a.tipz').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('.tipz',{
	className: 'tipz',
	fixed: false,
	hideDelay: 50,
	showDelay: 50
    });

});

