var active_tooltip;

function showtooltip(tt){
	$(tt).style.display = "block";
	
	if(active_tooltip)
	hidetooltip(active_tooltip);
	
	active_tooltip = tt;
}

function hidetooltip(tt){
	$(tt).style.display = "none";	
}