window.onload=function()
{
	/* setup tooltips */
	var as = [];

	$S('a').each(function(a){

		if (a.getAttribute('rel') == 'tooltip')	if (a.getAttribute('title')) as.push(a);

		if (a.getAttribute("href") && a.getAttribute("rel") == "external") a.target = "_blank";

	});

	new Tips(as, {maxOpacity: 0.85, maxTitleChars: 25});

}
