// You must load prototype.lite.js and moo.fx.js before you can use these functions

function tooltipIn(id) {
	var fadeIn = new fx.Opacity(id, {duration:1}); 
	fadeIn.custom(.01,1);
}

function tooltipOut(id) {
	var fadeOut = new fx.Opacity(id, {duration:1});
	fadeOut.custom(1,.01);
}