var hint_hideTimeout;
var hint_open = 'h01';

function hint_MouseOver(id) {
	if ((hint_open != '') && (hint_open != id)) hint_Hide(hint_open);			
	if (id != '') hint_Show(id);
}

function hint_Show(id)
{	
	var href = getElement("hint_" + id);
	var hint = getElement(id);
 	href.style.backgroundColor = "#B7D6FF"; //"#B1DFAC";
	hint.style.visibility = "visible";
	hint.style.display = "block";
	hint_open = id;
}

function hint_Hide(id)
{	
	var href = getElement("hint_" + id);
	var hint = getElement(id);
 	href.style.backgroundColor = "";
	hint.style.visibility = "hidden";
	hint.style.display = "none";
	hint_open = "";
}

function hint_OnLoad() {
	hint_MouseOver(hint_open);
}
